why do i get 'support for 'nargin' in a script has been removed?
29 views (last 30 days)
Show older comments
narginchk(1,3)
nargoutchk(0,1)
%%
% Set default values for embedding parameters.
t = 1;
m = 1;
%%
% Set input arguments
if nargin > 2
t = varargin{3};
end
if nargin > 1
m = varargin{2};
end
0 Comments
Answers (2)
Steven Lord
on 8 Mar 2023
Script files aren't allowed to have input or output arguments. Therefore it doesn't make sense to ask how many inputs or outputs the script file has. In release R2016b the nargin, nargout, and inputname functions started throwing errors when called from within a script.
0 Comments
See Also
Categories
Find more on Argument Definitions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!