Union of cell matrix

2 visualizzazioni (ultimi 30 giorni)
raj singh
raj singh il 8 Giu 2016
Commentato: raj singh il 9 Giu 2016
I have a cell matrix
A={[1 2 3] [2 8] [9 2 5]};
I want unique value or union of A.
The solution should be like this = [1 2 3 5 8 9]
Please give me the

Risposta accettata

KSSV
KSSV il 8 Giu 2016
unique(cell2mat(A))

Più risposte (1)

Stephen23
Stephen23 il 8 Giu 2016
>> A={[1 2 3] [2 8] [9 2 5]};
>> unique([A{:}])
ans =
1 2 3 5 8 9

Categorie

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

Community Treasure Hunt

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

Start Hunting!

Translated by