how to program to check the sequence 0<alpha1<a​lpha2<alph​a3<alpha4<​pi/2

hi.
i have written a program in which 4 angles are derived (alpha1, alpha2, alpha3,alpha4). now i have to check whether they are in sequence or not. if not then i have to find again these angles. kindly help me how i program it to verify above condition. thanks in advance
Regards

 Réponse acceptée

Stephen23
Stephen23 le 25 Juin 2015
Modifié(e) : Stephen23 le 25 Juin 2015
MATLAB supports binary relational operators only, so one cannot chain comparisons together as a<b<c, this needs to be written as a<b & b<c. You might want something like this:
val = 0<alpha1 && alpha1<alpha2 && alpha2<alpha3 && alpha3<alpha4 && alpha4<pi/2;

4 commentaires

thanks sir i got it
sir if i have the 4 by matrix or any, then how i apply this rule on each row. kindly write the generalize form.
angle=[angle1 angle2 angle3 angle4; angle1 angle2 angle3 angle4;angle1 angle2 angle3 angle4; angle1 angle2 angle3 angle4]
I assume that the rows are supposed to be different, and not simply repeated like this? In any case, a true general solution would be to use diff, like this:
>> A = [0,15,30,45,60; 1,2,3,4,5; 0,45,90,135,180]
A =
0 15 30 45 60
1 2 3 4 5
0 45 90 135 180
>> all(0<diff(A,1,2),2)
ans =
1
1
1
Now change the last value of the second row:
>> A = [0,15,30,45,60; 1,2,3,4,1; 0,45,90,135,180]
A =
0 15 30 45 60
1 2 3 4 1
0 45 90 135 180
>> all(0<diff(A,1,2),2)
ans =
1
0
1
This is the most general solution in that it works for input matrices of any size.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB Coder dans Centre d'aide et File Exchange

Tags

Aucun tag saisi pour le moment.

Community Treasure Hunt

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

Start Hunting!

Translated by