How to plot a 2d parametric equation

59 vues (au cours des 30 derniers jours)
MIGUEL HERNANDEZ
MIGUEL HERNANDEZ le 28 Sep 2016
Equation is x=2t+4, y=t-1
This is what I did:
t=(1:5)
x=2t+4
t=t-1
plot (x,y)
And I obtained a diagonal line.
Note: t=(1:5) is not part of the exercise, I just added to see what could happen.

Réponse acceptée

KSSV
KSSV le 28 Sep 2016
N = 100 ;
t = linspace(0,1,N) ;
x=2*t+4 ;
y=t-1 ;
plot(x,t)
  2 commentaires
MIGUEL HERNANDEZ
MIGUEL HERNANDEZ le 29 Sep 2016
Thanks! Could you tell me how to limit the graph to these values: -1<t<4 ?
Rachel A. Eaglin
Rachel A. Eaglin le 19 Fév 2021
Modifié(e) : Rachel A. Eaglin le 19 Fév 2021
You can write this on the line after the plot() command
ylim([-1 4]);

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Mathematics 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!

Translated by