Mentions légales du service

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

Minor change in matfaust.Faust.cat (removing output of local variables).

parent 54a37faa
No related branches found
No related tags found
No related merge requests found
...@@ -1957,14 +1957,14 @@ classdef Faust ...@@ -1957,14 +1957,14 @@ classdef Faust
end end
if(C.isReal) if(C.isReal)
if(~ isreal(A)) if(~ isreal(A))
C = complex(C) C = complex(C);
C = matfaust.Faust(C, mexFaustCplx(mex_func_name, C.matrix.objectHandle, A.matrix.objectHandle)); C = matfaust.Faust(C, mexFaustCplx(mex_func_name, C.matrix.objectHandle, A.matrix.objectHandle));
else else
C = matfaust.Faust(C, mexFaustReal(mex_func_name, C.matrix.objectHandle, A.matrix.objectHandle)); C = matfaust.Faust(C, mexFaustReal(mex_func_name, C.matrix.objectHandle, A.matrix.objectHandle));
end end
else else
if(isreal(A)) if(isreal(A))
A = complex(A) A = complex(A);
end end
C = matfaust.Faust(C, mexFaustCplx(mex_func_name, C.matrix.objectHandle, A.matrix.objectHandle)); C = matfaust.Faust(C, mexFaustCplx(mex_func_name, C.matrix.objectHandle, A.matrix.objectHandle));
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment