"Not enough input arguments" plotting a function
5 次查看(过去 30 天)
显示 更早的评论
(Today is my first day using Matlab.) I've been trying to plot the following function:
function[Rs] = sFn(r)
Rs = 2.*3^(-3./2).*(1-2.*r./3+2.*r^2/27).*exp(-r./3)
end
with
plot(sFn,r) or plot(Rs,r)
The first yields "Not enough input arguments" and the second "Undefined function or variable Rs". I cannot, for the life of me figure out how this is supposed to work. :( Help.
0 个评论
采纳的回答
Amit
2014-1-12
First define r like
r = 1:10;
Then do the plotting using,
plot(r,sFn(r))
2 个评论
Amit
2014-1-12
Also if this is your first day with Matlab, I'll suggest 'help' commad. That comes in quite handy during the learning process. Like if you having trouble with 'plot' command,
help plot
will give you a quick reference to plot command. Also, the MATLAB documentation is pretty good too.
Happy Coding!
更多回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!