Calculating angle between 2 vectors
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
xx = rand (1,16);
yy = rand (1,16);
zz = rand (1,16);
A = [xx yy zz]; % First Vector
pp = rand (1,16);
qq = rand (1,16);
rr = rand (1,16);
B = [pp qq rr]; % Second Vector
Can any one help me to calculate the angle between A and B vectors .
Thanks in ADVANCE !!!!
0 Kommentare
Antworten (1)
Mahmoud Ashraf
am 11 Jun. 2022
Bearbeitet: Mahmoud Ashraf
am 11 Jun. 2022
xx = rand (1,16);
yy = rand (1,16);
zz = rand (1,16);
A = [xx yy zz]; % First Vector
pp = rand (1,16);
qq = rand (1,16);
rr = rand (1,16);
B = [pp qq rr]; % Second Vector
angle = acos(dot(A,B)/(norm(A)*norm(B)))
0 Kommentare
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!