Make unit vectors at equal angles without for loop

13 次查看(过去 30 天)
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

回答(1 个)

Star Strider
Star Strider 2022-6-15
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
.

类别

Help CenterFile Exchange 中查找有关 Mathematics 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by