How can search for identical rows in a matrix?

8 Ansichten (letzte 30 Tage)
Miguel Angel Guardiola Marco
Beantwortet: Mark Schwab am 25 Jan. 2018
Hi, I need seach identical rows in a matrix. Can anybody help me?
Thanks

Antworten (1)

Mark Schwab
Mark Schwab am 25 Jan. 2018
A brief answer would be to use the "isequal" function and row indexing. For example:
% A = some matrix
if (isequal(A(i,:),A(j,:)))
% Then row i of matrix A is equal to row j
end
Please refer to the following documentation for more information on the isequal funciton:

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!

Translated by