Filter löschen
Filter löschen

How can I discretize a smooth curve?

8 Ansichten (letzte 30 Tage)
Tay
Tay am 7 Mai 2020
Kommentiert: Stephen23 am 24 Nov. 2021
If I have a smooth curve and I want to discretize this curve in some steps how can I do it? I saw some funtion in matlab but is does not work in my curve. See the image below.
  9 Kommentare
Lazaros Christoforidis
Lazaros Christoforidis am 7 Mai 2020
np, you could rescale your x, y values

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Cris LaPierre
Cris LaPierre am 7 Mai 2020
Try using the discretize function
y=linspace(3.5,3.4965);
x=linspace(0,1000);
plot(x,y)
% discretize
[Y,E] = discretize(y,20);
hold on
plot(x,E(Y),'--r')
hold off
Also, consider looking into the stairstep graph, though that seems to put the steps outside the curve again.
  5 Kommentare
Lazaros Christoforidis
Lazaros Christoforidis am 7 Mai 2020
yeah thats smooth
Tay
Tay am 8 Mai 2020
Thanks guys !! It's perfectly working !! :D :)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

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

Produkte


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by