Filter löschen
Filter löschen

graph is not smooth

22 Ansichten (letzte 30 Tage)
Fareeha
Fareeha am 3 Aug. 2023
Kommentiert: Fareeha am 8 Aug. 2023
Greetings,
i am getting this type of wavy graphs while they should be smooth. i will appreciate any help.

Akzeptierte Antwort

Cris LaPierre
Cris LaPierre am 3 Aug. 2023
Add more points to your line to give it a smoother appearance. Compare the 2 lines below, the first with 5 data points, and the 2nd with 41.
x1 = -2:2;
x2 = -2:0.1:2;
y1 = x1.^2;
y2 = x2.^2;
plot(x1,y1,x2,y2)
legend

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Produkte


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by