Method: MPFI::SquareMatrix#determinant
- Defined in:
- ext/mpfi_matrix/mpfi/ruby_mpfi_matrix.c
#determinant ⇒ Object
980 981 982 983 984 985 986 987 988 |
# File 'ext/mpfi_matrix/mpfi/ruby_mpfi_matrix.c', line 980 static VALUE r_mpfi_square_matrix_determinant (VALUE self) { MPFIMatrix *ptr_self; MPFI *ptr_ret; VALUE ret; r_mpfi_get_matrix_struct(ptr_self, self); r_mpfi_make_struct_init(ret, ptr_ret); mpfi_square_matrix_determinant(ptr_ret, ptr_self); return ret; } |