Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Not getting any plots on my graph
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
My graph using parametric equations isn't showing any plots, just an empty graph and I'm unsure why.
t=linspace(0, 20);
x=4 + sqrt(t);
y=5+cos(2*t)/(t+1);
plot(x,y)
xlabel 'x displacement'
ylabel 'y displacement'
1 commentaire
per isakson
le 15 Déc 2017
Modifié(e) : per isakson
le 15 Déc 2017
Replace
y=5+cos(2*t)/(t+1);
by
y=5+cos(2*t)./(t+1);
Réponses (0)
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!