How to determine if angles match

2 Ansichten (letzte 30 Tage)
Madeleine
Madeleine am 20 Feb. 2024
Kommentiert: Madeleine am 21 Feb. 2024
I am trying to write code to determine when two precession angles match. Matlab keeps skipping to the last else statement regardless of which elseif statement should be taking precedence.
prec1 = rad2deg(acos(C21./sin(deg2rad(nutation))));
Unrecognized function or variable 'C21'.
prec2 = rad2deg(asin(C31./sin(deg2rad(nutation))));
if abs(prec1 - prec2) < 10^-3
prec = prec1;
elseif abs(prec1 - (180 - prec2))< 10^-3
prec = prec1;
elseif abs((360 - prec1) - prec2) < 10^-3
prec = prec2;
else
prec = 360 - prec1;
end
  4 Kommentare
Madeleine
Madeleine am 20 Feb. 2024
C21, C23, and nutation are arrays that contain ten values calculated earlier in the code.
C12 and C23 are elements of a direction cosine matrix for a two body 1-3-1 rotation sequence and nutation is the angle about body fixed axis u1. precession is the angle about body fixed axis u3.
Madeleine
Madeleine am 20 Feb. 2024
C12 =
0
0.5207
-0.2255
0.6599
0.0813
0.4857
-0.0558
-0.3070
-0.2298
-0.7950
C23 =
0
0.4887
0.0624
-0.3257
0.0516
-0.7995
0.3638
-0.7010
0.2401
-0.6821
nutation =
0
116.6697
53.6137
79.6703
102.4619
32.9411
127.0446
18.0036
103.4862
69.9394

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 20 Feb. 2024
You would get that behavior if prec1 or prec2 are non-scalar and it does not happen that all of the values pass the tests.
  1 Kommentar
Madeleine
Madeleine am 21 Feb. 2024
How do i make my variables scalar. I tried using ANY and ALL functions but it I still get a non-scalar error

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Produkte


Version

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by