What is the cause of undefined variable or function error.
显示 更早的评论
Hello and a good day. I just wanna ask a question about 'undefined variable or function' error.
i got an error saying
"Undefined variable or function Target might refer to the function target."
I'm just curious. What is the main cause of this type of error ?
Because, previously my function worked just fine and i haven't change a thing and suddenly this error popped up. Thanks in advance...
回答(1 个)
Matt Fig
2012-10-12
MATLAB is case sensitive. Target, target, tarGet, TarGet are all different things. If your function is named target, don't call it as Target.
clear all
Tar = 6;
TAR = 7;
tar = 8;
whos
9 个评论
tarmizi adam
2012-10-12
Walter Roberson
2012-10-12
which -all Target
See if it is on your path.
Try executing
rehash
tarmizi adam
2012-10-12
tarmizi adam
2012-10-12
Walter Roberson
2012-10-12
Ah, okay then what it is telling you is that at the point where fileOpen is being used (not the point it is being initialized), fileOpen does not exist. We would need to see the code between the two points to explain what is going on.
tarmizi adam
2012-10-12
Walter Roberson
2012-10-12
You have if, elseif, but if neither condition is true then fileOpen is left undefined.
tarmizi adam
2012-10-12
tarmizi adam
2012-10-12
类别
在 帮助中心 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!