Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Not getting any plots on my graph

1 Ansicht (letzte 30 Tage)
Oskar
Oskar am 15 Dez. 2017
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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 Kommentar
per isakson
per isakson am 15 Dez. 2017
Bearbeitet: per isakson am 15 Dez. 2017
Replace
y=5+cos(2*t)/(t+1);
by
y=5+cos(2*t)./(t+1);

Antworten (0)

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by