I want to know x,y coordinate

1 visualización (últimos 30 días)
Jong Hyun Lee
Jong Hyun Lee el 31 de Mzo. de 2022
Respondida: Torsten el 31 de Mzo. de 2022
t=0:0.01:10
x=t.^3+t
y=t.^2+2.*t.^3
plot(x,y)
How should I write the code to obtain x,y coordinate for specific value of t?
ex)
When I define t=5
the result display x=@ and y=@

Respuestas (2)

KSSV
KSSV el 31 de Mzo. de 2022
Already you have the code.
t=0:0.01:10 ;
x=t.^3+t ;
y=t.^2+2.*t.^3 ;
plot(x,y)

Torsten
Torsten el 31 de Mzo. de 2022
f = @(t) [t.^3 + t , t.^2 + 2*t.^3];
f(0.5)

Categorías

Más información sobre Interpolation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by