How can I discretize a smooth curve?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/291075/image.png)
9 Kommentare
Akzeptierte Antwort
Cris LaPierre
am 7 Mai 2020
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
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Spreadsheets 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!