How can I pass variables to eval without error suppression ?
Show older comments
I'm trying to not use the error suppression on a line and to eliminate the console output of a function using evalc.
a = 1; % Matlab tells me this value might be unused.
b = [1 1]; %ok<NASGU> <- I'm also trying to not use those where possible.
evalc('fun(length(b),b,a)');
Is there a way to acheive both of my goals ? I feel like I'm either stuck with the console output or the error suppression message.
Thanks for your help.
3 Comments
Guillaume
on 17 Oct 2019
The obvious question is why are you using evalc (or eval) which we keep on saying is rarely a good idea.
The 2nd question is why do you care so much about whether or not an mlint warning is suppressed or not. It has not influence on what is displayed when the code is run.
In any case, why not use feval:
feval('fun', numel(b), b, a)
and avoid all the problems.
Patrick Bernier
on 18 Oct 2019
Patrick Bernier
on 18 Oct 2019
Accepted Answer
More Answers (1)
Walter Roberson
on 17 Oct 2019
sprintf('%g', a, b);
This will not work for non-numeric variables.
4 Comments
Patrick Bernier
on 17 Oct 2019
Walter Roberson
on 18 Oct 2019
It doesn't matter if it splits b. Notice that I put semicolon at the end of the sprintf. The command executes and the result is thrown away, but the analyzer is happy because it sees that the variables are used.
Patrick Bernier
on 18 Oct 2019
Walter Roberson
on 18 Oct 2019
This is a new additional call whose output is intended to be thrown away. The only reason to add it is to silence the analyzer warning.
a=whatever
b=whatever
sprintf('%g', a, b); %use a and b to silence analysis
evalc('whatever')
Categories
Find more on Matrix Indexing 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!