"Not enough input arguments" plotting a function

조회 수: 3 (최근 30일)
Sarah
Sarah 2014년 1월 11일
답변: manan goel 2019년 8월 17일
(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.

채택된 답변

Amit
Amit 2014년 1월 12일
First define r like
r = 1:10;
Then do the plotting using,
plot(r,sFn(r))
  댓글 수: 2
Amit
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!
Sarah
Sarah 2014년 1월 12일
Thank you so much! I tried watching tutorials and the help section on plotting, but I didn't realize I needed to write the function as sFn(r).

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

manan goel
manan goel 2019년 8월 17일
x = linspace(-1,1,200);
y = 0.5.*sin.*[sin.*(12.*x)];
plot(x,y)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by