Mentions légales du service

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

Fix matfaust.Faust.mtimes_trans and tests MATLAB_FAUST_CONFIG*, MATLAB_FAUST_SPEED.

The function mtimes_trans is not really useful and is kept just for old tests.
parent ee6abf67
Branches
Tags
No related merge requests found
...@@ -791,10 +791,10 @@ classdef Faust < handle % subclass of handle for Faust.delete to be called on cl ...@@ -791,10 +791,10 @@ classdef Faust < handle % subclass of handle for Faust.delete to be called on cl
%====================================================================== %======================================================================
function C = mtimes_trans(F, A, trans) function C = mtimes_trans(F, A, trans)
%% %%
if trans if trans
F = F.' F = F.'
end end
mtimes(F, A) C = mtimes(F, A)
end end
%====================================================================== %======================================================================
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment