Filter löschen
Filter löschen

how to code i included in A

3 Ansichten (letzte 30 Tage)
ad lyn
ad lyn am 6 Mai 2022
Beantwortet: Voss am 6 Mai 2022
how to code " i included in A"

Akzeptierte Antwort

Voss
Voss am 6 Mai 2022
Maybe you can use ismember. (Here I'm using ii to avoid ambiguity with the imaginary unit 1i, a.k.a., i.)
ii = 3;
A = [1 2 3 4 5];
ismember(ii,A) % ii is in A
ans = logical
1
ii = [6 7];
A = [2 4 6 8 10];
ismember(ii,A) % ii(1) is in A, ii(2) is not
ans = 1×2 logical array
1 0

Weitere Antworten (0)

Kategorien

Mehr zu Tables 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!

Translated by