Undefined function or variable
2 次查看(过去 30 天)
显示 更早的评论
Hello, I am new to Matlab and been trying to solve the below task: Write a function called light_speed that takes as input a row vector of distances in kilometers and returns two row vectors of the same length. Each element of the first output argument is the time in minutes that light would take to travel the distance specified by the corresponding element of the input vector. To check your math, it takes a little more than 8 minutes for sunlight to reach Earth which is 150 million kilometers away. The second output contains the input distances converted to miles. Assume that the speed of light is 300,000 km/s and that one mile equals 1.609 km.
So my function looks like that:
function [ Time,DistM ] = light_speed(A)
[~,n]=size(A);
Time = A(1,1:n).*(1000/18000000);
DistM = A(1,1:n).*0.621371192 ; end
However Matlab comes with this message: >> edit light_speed
>> M=[1 2 3] M = 1 2 3
>> light_speed(M)
Undefined function or variable 'light_speed'.
Why it can't recognize the function at all even though I have saved it?
Thanks
0 个评论
采纳的回答
Beder
2017-3-20
Did you save light_speed in the same .m file as the one that you're calling from?
a Code like the one below should work. Is your code structured like this?
a=1
b=myfunction(a)
function x=myfunction(a)
x=a+1;
end
更多回答(1 个)
Adam
2017-3-20
You need to make sure it is on your path
doc addpath
or use the ribbon on the MAtlab GUI or just save it in your working directory.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Error Handling 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!