Plot the curve described by the following equations

5 ビュー (過去 30 日間)
Mark Chernyshov
Mark Chernyshov 2018 年 9 月 23 日
回答済み: Mark Chernyshov 2018 年 9 月 23 日
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

採用された回答

Stephan
Stephan 2018 年 9 月 23 日
編集済み: Stephan 2018 年 9 月 23 日
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')

その他の回答 (1 件)

Mark Chernyshov
Mark Chernyshov 2018 年 9 月 23 日
Thanks a lot!

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by