How to plot an arc shaped figure?

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.

Respuestas (2)

darova
darova el 14 de Mayo de 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 comentarios

Milad Izadi
Milad Izadi el 14 de Mayo de 2020
Thank you for your attemp. But, my question is asking about how to plot the arc shaped plot where the whole box of the plot is on an arc.
darova
darova el 14 de Mayo de 2020
I don't understand. Can you show? Simple sketch?

Iniciar sesión para comentar.

Categorías

Más información sobre Line Plots en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 14 de Mayo de 2020

Respondida:

el 16 de Mayo de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by