how to select a whole row in a matrix
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
hi, I have two matrices with 20 rows and 4 columns and I want to compare them using ismember. my problem is that i want to consider every row as a single input as if my matrices are 20x1 vectors.
how can i do that?
0 Kommentare
Akzeptierte Antwort
Jan
am 6 Dez. 2022
Bearbeitet: Jan
am 6 Dez. 2022
ismember(A, B, 'rows')
% Or maybe
ismember(A.', B.', 'rows')
4 Kommentare
Jan
am 6 Dez. 2022
nextEq = ~any(diff(A, 1, 1), 2)
diff() subtracts elements of an array along the dimension specified as 3rd input argument. any(X, 2) checks if any element along the 2nd dimension differs from zero.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB 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!