Effacer les filtres
Effacer les filtres

What fuction can I use for represente time as an angle?

2 vues (au cours des 30 derniers jours)
Perla González Pereyra
Perla González Pereyra le 8 Juin 2021
Commenté : Jonas le 9 Juin 2021
Hi! Brefly, I have some latencies of neurons that i want to represent in a circular plot, the total circle representes an interval of 300ms an the latencies goes from the origin to the correspond angle as a clockwise.
For example if 300ms is 360° then 150ms will be an angle of 180°, like:
latencies= [50; 240; 151; 122; 170];
interval=300;
angles[];
for r=1:size(latencies,1)
angle=latencies(r,1)*360/interval
angles=[angles;angle]
end
angles=[60; 288; 181.2; 146.4; 204];
I think compass is the more accurate to what i want to do, but in the example i really dont get how the "v" varible works when I see the graph in my case "u" will be the same number because i dont want to put another magnitud for now
u = [5 3 -4 -3 5];
v = [1 5 3 -2 -6];
compass(u,v)
Do you have some suggestion?
  1 commentaire
Perla González Pereyra
Perla González Pereyra le 8 Juin 2021
So, I replace 360 for pi values:
for r=1:size(latencies,1)
angle=latencies(r,1)*(2*pi)/interval
angles=[angles;angle]
end
and then create a u vector
u=ones(size(latencies))
and use polarplot
polarplot(angles,u,'o')
rlim([0 1])
And get what i want, but how do i conect this points to the origin? Help.

Connectez-vous pour commenter.

Réponse acceptée

Jonas
Jonas le 8 Juin 2021
Modifié(e) : Jonas le 8 Juin 2021
first thing: you can calculate all your angles directly using the formula in your for loop:
angles=latencies*360/interval;
to your question: the compass function wants x and y coordinates of your points to which the arrows are pointing, you can get them using the cos() and the sin() on the angles (dont forget comversion from degree to rad)
angles=[45 0 180 70];
angles=angles/180*pi;
compass(cos(angles),sin(angles))
edit: instead of conversion you can use the cosd() and sind() function which takes the inputs as degrees instead of rad
  3 commentaires
Perla González Pereyra
Perla González Pereyra le 8 Juin 2021
Jonas! I finally get it
I used this new angles and your sugest
compass(cos(angles),sin(angles))
And finally get the plot!
Thank u so much!
Jonas
Jonas le 9 Juin 2021
sorry for the short confusion, i edited my answer shortly after creation, i thought you would not read that fast ;-)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Polar 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