Make unit vectors at equal angles without for loop

12 vues (au cours des 30 derniers jours)
Lavika Singh
Lavika Singh le 15 Juin 2022
Commenté : Sam Chak le 15 Juin 2022
Can you help me unit vectors at equal angles to each other without using for loops. I just want to use linspace and plot or maybe any other simple command
  2 commentaires
KSSV
KSSV le 15 Juin 2022
Any pictorial example?
Sam Chak
Sam Chak le 15 Juin 2022
@Lavika Singh, can you show the equal angle formula?

Connectez-vous pour commenter.

Réponses (1)

Star Strider
Star Strider le 15 Juin 2022
Possibly —
a = linspace(0, 2*pi, 7);
r = 1;
x = r*cos(a);
y = r*sin(a);
zv = zeros(size(a));
figure
plot([zv; x], [zv; y])
axis padded
axis equal
figure
quiver(zv, zv, x, y)
axis padded
axis equal
.

Catégories

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