"Not enough input arguments" plotting a function
Afficher commentaires plus anciens
(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.
Réponse acceptée
Plus de réponses (1)
manan goel
le 17 Août 2019
x = linspace(-1,1,200);
y = 0.5.*sin.*[sin.*(12.*x)];
plot(x,y)
Catégories
En savoir plus sur 2-D and 3-D Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!