Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

how to delete same cols from a matrix

2 Ansichten (letzte 30 Tage)
Brian Kim
Brian Kim am 3 Mär. 2017
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
for example, a=[4 5 6 5 6 4; 4 6 5 3 5 4; 4 7 2 8 2 4; 4 2 4 7 4 4; 4 3 9 1 9 4;] is.
so, row=1 & 5 and row =2 & 4 is same.
what i want is to delete same row. but each ones must remain.

Antworten (1)

KSSV
KSSV am 3 Mär. 2017
doc unique
b = unique(a', 'rows')'

Community Treasure Hunt

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

Start Hunting!

Translated by