I need help with creating bounded logarithmic plot

2 ビュー (過去 30 日間)
Adam Szablewski
Adam Szablewski 2021 年 6 月 9 日
回答済み: Joel Lynch 2021 年 6 月 9 日
I need help with creating bounded logarithmic plot with:
x=e^-1, y=t, 0<t<2pi
Can someone please solve this?

回答 (1 件)

Joel Lynch
Joel Lynch 2021 年 6 月 9 日
Assuming you meant to have , then
t = linspace(0,2*pi);
x = exp(-t); % if constant, then x(1:numel(t))=exp(-1);
y = t;
plot(x,y)

カテゴリ

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

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by