Undefined function for input arguments of....
Show older comments
When I want to run the following function:
function [x,y] = ueb(x,y)
if x == 0 && y == 0
disp('hello')
else
disp('bye')
end
with inputing ueb(1,0) I get the error message:
>> ueb(1,0)
Undefined function 'ueb' for input arguments of type 'double'.
and yes, I have set the path...so what is the reason and what can I do? Thanks
Answers (2)
Shashank Prasanna
on 3 Feb 2013
MiauMiau, all these seems to be like they are either path issues or variable-function name conflicts.
Do the following since this is a relatively new installation:
>> restoredefaultpath
>> rehash toolboxcache
>> savepath
>> clear all
%%Run your code below %%
Azzi Abdelmalek
on 3 Feb 2013
Edited: Azzi Abdelmalek
on 3 Feb 2013
create another function, for example
function [x,y] = beu(x,y)
if x == 0 && y == 0
disp('hello')
else
disp('bye')
end
save it as beu then check if you are getting the same problem.
>>beu(1,2)
Categories
Find more on Performance and Memory 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!