How to plot an arc shaped figure?
Ältere Kommentare anzeigen
I would like to know how to plot something similar to the picture here in below. As we can see, the plot is on an arc of a circle.

Antworten (2)
darova
am 14 Mai 2020
Try this
t = linspace(0,pi,500);
x = cos(t).*(1 + 0.1*cos(30*t) + 0.05*sin(100*t));
y = sin(t).*(1 + 0.1*cos(30*t) + 0.05*sin(100*t));
plot(x,y)
axis equal

2 Kommentare
Milad Izadi
am 14 Mai 2020
darova
am 14 Mai 2020
I don't understand. Can you show? Simple sketch?
Milad Izadi
am 16 Mai 2020
0 Stimmen
Kategorien
Mehr zu Line Plots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!