Values instead of functions
Afficher commentaires plus anciens
I'm attempting to plot y(x)=sin^2(a*sin(x))/sin^2(sin(x)), where a is some nonzero constant, but can't generate a plot becuase y is being returned as a constant. y should be a function that varies with x, not a constant numerical value, so what am I doing wrong?
Code:
x=0:10
r=sin(x)
y=sin(3*r).^2/sin(r).^2
plot(x,y)
Réponse acceptée
Plus de réponses (0)
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!