Macaulay2 Engine
Loading...
Searching...
No Matches

◆ mult() [5/10]

void MatrixOps::mult ( const DMatQQFlint & A,
const DMatQQFlint & B,
DMatQQFlint & result_product )
inline

Definition at line 1189 of file mat-linalg.hpp.

1192{
1193 // The A and B on the next line are switched because the memory layout
1194 // expected
1195 // is the transpose of what we have for DMat.
1196 fmpq_mat_mul(result_product.fmpq_mat(), A.fmpq_mat(), B.fmpq_mat());
1197}
const fmpq_mat_t & fmpq_mat() const

References DMat< M2::ARingQQFlint >::fmpq_mat().