problem with undefined function or variable
Show older comments
i have this problem i don't know if matlab going mad :
Undefined function or variable 'name of function'
for the first time it works perfectly but after i close matlab and re-open it ,it gives that error.
can you help me with that
thank you
1 Comment
Stephen23
on 13 May 2017
@best16 programmer: please edit your question and show us the complete error message. This means all of the red text.
Answers (1)
Star Strider
on 13 May 2017
Without seeing your code, it is not possible to determine the problem. If 'name of function' is a variable (character array), there should be no problem.
Example:
x = 'name of function';
What are you doing with it?
8 Comments
best16 programmer
on 13 May 2017
Star Strider
on 13 May 2017
If it is a variable name, it must not have any spaces in its name.
Use: name_of_function for the variable name instead.
I have no explanation for its working the first time and not after. I might if I could see the relevant parts of your code, and the complete (all the red text copied from your Command Window) error message and pasted to a Comment here.
Otherwise, I am simply guessing as to what the problem actually is. In my experience, that is an extremely inefficient troubleshooting method.
best16 programmer
on 13 May 2017
Edited: best16 programmer
on 13 May 2017
Stephen23
on 13 May 2017
@best16 programmer: please give the complete error message.
Star Strider
on 13 May 2017
It is difficult to understand your code.
It appears to depend on the if condition, since the assignments inside the if block will not execute if (min(r) > e*0.4), leaving them all undefined and ‘empty’. Since ‘peak’ is assigned in that if block, if the if condition is not satisfied, none of the values in the if block will be assigned.
Assign ‘peak’ to be NaN or some appropriate scalar value before the if block. (It will be replaced with the correct value if the if condition is satisfied and the if block executes.) That will avoid the error that you are currently getting.
I cannot determine if it will avoid problems in the rest of your code.
best16 programmer
on 13 May 2017
best16 programmer
on 13 May 2017
Star Strider
on 13 May 2017
I cannot determine what ‘peak’ is with respect to length:
YValue(j) = time(Location)
value=YValue'
The problem is that it will return a (1x2) vector for the result of the size call.
So:
peak = 1:42;
v = 10:size(peak)-4
v =
1×0 empty double row vector
That will not work, since plot expects vector arguments, and ‘empty’ vectors do not fulfill that requirement.
Categories
Find more on Characters and Strings in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!