Remove redundancy values from matrix

2 visualizzazioni (ultimi 30 giorni)
Anusha
Anusha il 24 Ott 2013
Risposto: Wayne King il 24 Ott 2013
Any possible to remove the duplicate entries
S=[2 3 4 5 4 4 4;2 3 4 2 3 4 5;3 4 4 5 5 2 3];
I want the output will be
A=[2 3 4 5]

Risposta accettata

Wayne King
Wayne King il 24 Ott 2013
S=[2 3 4 5 4 4 4;2 3 4 2 3 4 5;3 4 4 5 5 2 3];
S1 = unique(S);

Più risposte (1)

Andrei Bobrov
Andrei Bobrov il 24 Ott 2013
A = unique(S).';

Categorie

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

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by