How do I plot a line against the y axis?
2 ビュー (過去 30 日間)
古いコメントを表示
I tried taking the transpose but it does not seem to work.![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/732814/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/732814/image.png)
0 件のコメント
採用された回答
Star Strider
2021 年 9 月 8 日
I am not certain what you want to do.
Perhaps —
x = linspace(0, 2*pi);
y = sin(x);
subplot(2,1,1)
plot(x, y)
grid
ylim([-1 1]*1.1)
subplot(2,1,2)
plot(y, x)
grid
xlim([-1 1]*1.1)
Experiment to get different results.
.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!