How to underline an undefined function or variable
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Heorhii Koltsov
el 5 de Oct. de 2018
Comentada: Heorhii Koltsov
el 8 de Oct. de 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 comentarios
Stephen23
el 5 de Oct. de 2018
Editada: Stephen23
el 5 de Oct. de 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.
Respuesta aceptada
John D'Errico
el 5 de Oct. de 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 comentarios
Más respuestas (1)
Image Analyst
el 5 de Oct. de 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.
Ver también
Categorías
Más información sobre Debugging and Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!