Getting joint lines in 2-D plot instead of a single line.
1 回表示 (過去 30 日間)
古いコメントを表示
Vaishali
2023 年 12 月 23 日
コメント済み: Sulaymon Eshkabilov
2023 年 12 月 23 日
I'm trying to plot a Force v/s Angle graph like this:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1575247/image.png)
But I'm getting joint lines like this:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1575252/image.png)
What am I doing wrong? Thank in advance for answering. Have a nice day :)
1 件のコメント
採用された回答
Sulaymon Eshkabilov
2023 年 12 月 23 日
Small correction is needed with the indexing, see this sample code:
X = [ 0 5 10 15 -3 -5];
Y = [2*X.^2+2; 3*X.^2+2; 2.5*X.^2+5;]
figure
subplot(211)
plot(X, Y, '-s')
title('Wrong')
Xs=sort(X);
subplot(212)
plot(Xs, Y, '-o')
title('Corrected')
2 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!