Effacer les filtres
Effacer les filtres

How do I plot Rosette-like diagram in this case?

7 vues (au cours des 30 derniers jours)
HyoJae Lee
HyoJae Lee le 31 Jan 2023
Commenté : HyoJae Lee le 31 Jan 2023
Hello,
I have matrix like this
data=[10 10 30 100;
20 50 70 150;
30 45 60 120;]
First column is time (sec), second column is starting angle (in degree), thrid one is final angle (in degree) and fourth one is length (cm).
Just using first row of the data, for example, I want to plot like following figure.
(I put some texts just for an explanation.)
I want just that red arc which 1) starts with starting anlge, 2) ends with final angle, and 3) is as long as length.
So, the final plot might be smiliar with Rosette-like diagram that have some stacked arcs with time.
Thanks,
Hyojae

Réponse acceptée

Alan Stevens
Alan Stevens le 31 Jan 2023
Something like this?
data=[10 10 30 100;
20 50 70 150;
30 45 60 120];
theta0 = deg2rad(data(:,2));
thetaf = deg2rad(data(:,3));
r = data(:,4);
for i = 1:3
dtheta = (thetaf(i) - theta0(i))/20;
th = theta0(i):dtheta:thetaf(i);
x = r(i)*cos(th);
y = r(i)*sin(th);
plot(x,y)
hold on
end
axis equal

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by