How to underline an undefined function or variable
3 views (last 30 days)
Show older comments
Heorhii Koltsov
on 5 Oct 2018
Commented: Heorhii Koltsov
on 8 Oct 2018
Hi,
I am curious if there is a way to configure Matlab to show an undefined function or variable before running a script. For example, I want the following code to be executed if variable "a" is defined, otherwise I get notification that "a" is not set before pressing "F5".
if a>1
b=2;
end
Is there a way to configure this, maybe in Matlab code analyzer?
2 Comments
Stephen23
on 5 Oct 2018
Edited: Stephen23
on 5 Oct 2018
It is easy for code to change the MATLAB Search Path while running, to run scripts and call functions which change/define/clear variables in the workspace, and to overload almost any operator. There is no way to know what code will resolve to and what variables it actually has, until it is run.
That is simple a side effect of a dynamically typed language which is parsed on the fly. It is in the very nature of such a language.
Accepted Answer
John D'Errico
on 5 Oct 2018
I believe that capability would not exist, because it is easy enough to create a variable or function name on the fly. It would be terribly poor coding practice to do so, but you CAN do it.
A quick check in the editor preferences did not show such a flag.
0 Comments
More Answers (1)
Image Analyst
on 5 Oct 2018
There is a not very practical way. You could do
if exist('a', 'var')
if a>1
b=2;
end
else
uiwait(errordlg('a does not exist'));
end
But you really don't want to do that for every variable in your program. Anyway, if you knew to check for it, then you'd know to assign it. There is no automatic way to do it before running your program. However sometimes the mlint will tell you that a variable is being used before it's assigned with a orange squiggly underline, but it doesn't always detect that.
See Also
Categories
Find more on Debugging and Analysis 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!