![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/648245/image.png)
I need help with creating bounded logarithmic plot
1 回表示 (過去 30 日間)
古いコメントを表示
I need help with creating bounded logarithmic plot with:
x=e^-1, y=t, 0<t<2pi
Can someone please solve this?
0 件のコメント
回答 (1 件)
Joel Lynch
2021 年 6 月 9 日
Assuming you meant to have
, then
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/648245/image.png)
t = linspace(0,2*pi);
x = exp(-t); % if constant, then x(1:numel(t))=exp(-1);
y = t;
plot(x,y)
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!