Plot the curve described by the following equations

Good afternoon! I need to plot a curve described by these equations: x = (1-t^2)/(1+t^2) y = 2t/(1+t^2) -1000<=t<= 1000

 Respuesta aceptada

Stephan
Stephan el 23 de Sept. de 2018
Editada: Stephan el 23 de Sept. de 2018
t = linspace(-1000,1000,500);
x = (1-t.^2)./(1+t.^2);
y = 2.*t./(1+t.^2);
subplot(2,1,1)
plot(t,x,'-r')
subplot(2,1,2)
plot(t,y,'-r')

Productos

Versión

R2018a

Etiquetas

Preguntada:

el 23 de Sept. de 2018

Respondida:

el 23 de Sept. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by