Logical operator not evaluating correctly
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Andrew
am 26 Jan. 2023
Beantwortet: Star Strider
am 26 Jan. 2023
Given the provided array X, create an array Y that is:
equal to 0 if the corresponding element of X is between -5 and +5, inclusive
equal to -1 if the corresponding element of X is less than -5
equalt to +1 if the corresponding element of X is greater than 5
Here is what I have:
Y = (~(X >= -5 & X <= 5) | (-1*(X < -5)) | (X>5)).
Why is the X < -5 not evaluationg to -1?
0 Kommentare
Akzeptierte Antwort
Star Strider
am 26 Jan. 2023
Only two comparisons are actually required here —
X = linspace(-7, 7, 15);
Y = -(X < -5) + (X > 5);
Check_Result = [X; Y]
.
0 Kommentare
Weitere Antworten (2)
Walter Roberson
am 26 Jan. 2023
A|B is an or test and returns a logical value -1 is nonzero which is considered true, and since you or everything together you are going to end up with logical true for those entries.
Try adding the results of the computation
0 Kommentare
Les Beckham
am 26 Jan. 2023
I would do this in separate steps.
X = randi([-20, 20], [1 15])
Y = zeros(size(X));
Y(X < -5) = -1;
Y(X > 5) = 1
0 Kommentare
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!