Mentions légales du service

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

Minor change in matfaust.Faust.optimize_time (preventing mat output).

parent cd034376
Branches
Tags
No related merge requests found
...@@ -837,7 +837,7 @@ classdef Faust ...@@ -837,7 +837,7 @@ classdef Faust
if(argc == i || ~ isnumeric(varargin{i+1}) || ~ ismatrix(varargin{i+1})) if(argc == i || ~ isnumeric(varargin{i+1}) || ~ ismatrix(varargin{i+1}))
error('mat keyword argument is not followed by a matrix.') error('mat keyword argument is not followed by a matrix.')
else else
mat = varargin{i+1} mat = varargin{i+1};
i = i + 1; % ignore mat from parsing (switch can handle only scalar or char vec i = i + 1; % ignore mat from parsing (switch can handle only scalar or char vec
end end
otherwise otherwise
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment