Function not accepting all available x values
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
DONGUK KIM
le 23 Avr 2020
Commenté : Sulaymon Eshkabilov
le 23 Avr 2020
So I wrote a simple code to get a plot of a function
x = linspace(0,100,101);
y = 4*x.*(x+1) / (4*x.*(x+1) + (sin( 8*sqrt(x+1) )).^2)
plot(x,y);
and for some reason y only comes out as a single value
Is there any reason why this might be happening?
0 commentaires
Réponse acceptée
Sulaymon Eshkabilov
le 23 Avr 2020
y = 4*x.*(x+1) ./ (4*x.*(x+1) + (sin( 8*sqrt(x+1) )).^2);
1 commentaire
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!