A way to write "if x is in y matrix do this"

35 visualizzazioni (ultimi 30 giorni)
so long story short im attempting to create a random value and then see if the value is in one range of numbers or another.
ive been able to do the randomising numbers part and tried to use the "ismember" function in the form:
if ismember(y,x)
im pretty certain this is the part of the code that is stopping me from getting the answers i want but cant find anything to solve it

Risposta accettata

Star Strider
Star Strider il 30 Gen 2023
It depends what the random number is, and how you define ‘y’ . The ismember function works for exact comparisons. The ismembertol function allows tolerances, and so is suitable for floating-point numbers.
Also, it may be necessary to use the any function with the result —
y = 1:10;
x = randi(20,1)
x = 8
im = ismember(y,x)
im = 1×10 logical array
0 0 0 0 0 0 0 1 0 0
Lany = any(im)
Lany = logical
1
Lall = all(im)
Lall = logical
0
Experiment to get the result you want.
.

Più risposte (1)

John D'Errico
John D'Errico il 30 Gen 2023
Modificato: John D'Errico il 30 Gen 2023
You CANNOT use ismember to test if a number is in an interval. Even ismembertol does not do that. Using code to do something it is not programmed to do tends to result in failures.
Can you test to see if a number lies in some interval? OF COURSE!!!!!!! That part is trivial.
intervaltest = @(x,lb,ub) (x>=lb) & (x<=ub);
x = rand(1,6)
x = 1×6
0.3244 0.9485 0.5797 0.5892 0.3590 0.6527
intervaltest(x,.3,.6)
ans = 1×6 logical array
1 0 1 1 1 0
So points 1,3,4,5 were in the interval, and points 2 and 6 were not.

Categorie

Scopri di più su Matrices and Arrays in Help Center e File Exchange

Prodotti


Release

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by