compute the unit vector given the angle

Hi guys,
How to compute the unit vector given the direction? Is there any function in matlab to do this task.
Thanks

Antworten (3)

Walter Roberson
Walter Roberson am 4 Mai 2012
Bearbeitet: Walter Roberson am 10 Dez. 2018

1 Stimme

For angle theta in radians,
%[x, y] = pol2cart(1, theta); %-> incorrect
[x, y] = pol2cart(theta, 1); %repaired

3 Kommentare

Kye Taylor
Kye Taylor am 4 Mai 2012
pol2cart(theta,1)?
Walter Roberson
Walter Roberson am 4 Mai 2012
Urrr, yes.
Kye Taylor
Kye Taylor am 4 Mai 2012
It's unusual that the inputs to the function don't match the "r-theta" convention that is used so often to identify the coordinate space.

Melden Sie sich an, um zu kommentieren.

Roger Stafford
Roger Stafford am 9 Jan. 2016

1 Stimme

If vector 'v' points in the desired direction, then do this to make it a unit vector:
v = v/norm(v);
Kye Taylor
Kye Taylor am 4 Mai 2012

0 Stimmen

Given the angle
theta
in radians (counter-clockwise is positive theta, theta = 0 points in the positive x-direction) your unit vector is
u = [cos(theta),sin(theta)]

1 Kommentar

jack
jack am 9 Jan. 2016
How can you apply your answer to higher dimensions?

Melden Sie sich an, um zu kommentieren.

Kategorien

Gefragt:

am 4 Mai 2012

Bearbeitet:

am 10 Dez. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by