Getting joint lines in 2-D plot instead of a single line.
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Vaishali
am 23 Dez. 2023
Kommentiert: Sulaymon Eshkabilov
am 23 Dez. 2023
I'm trying to plot a Force v/s Angle graph like this:

But I'm getting joint lines like this:

What am I doing wrong? Thank in advance for answering. Have a nice day :)
1 Kommentar
Akzeptierte Antwort
Sulaymon Eshkabilov
am 23 Dez. 2023
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!