Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 681ec31c authored by hhakim's avatar hhakim
Browse files

Fix matfaust Faust-matrix multiplication in case of tranpose Faust.

transpose_flag forgotten when moved to complex interleaved API.
parent 9f59d964
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ void faust_multiply(const mxArray **prhs, const int nrhs, mxArray **plhs, const
mwSize out_dims[2] = {nbRowB, nbColA};
plhs[0] = helperCreateNumMxArray<SCALAR>(out_dims);
newMxGetData(ptr_out, plhs[0]);
core_ptr->multiply(ptr_data, nbColA, ptr_out);
core_ptr->multiply(ptr_data, nbColA, ptr_out, transpose_flag);
#else
Faust::MatDense<SCALAR,Cpu> A(ptr_data, nbRowA, nbColA);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment