i want to use fonction(unique) to get un string ,but it awlays shows Error using cell/unique?Can anyone tell me what I am doing wrong here? thank you
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
pengcheng
am 3 Okt. 2014
Kommentiert: pengcheng
am 6 Okt. 2014
P={pa(1),pa(2),pa(3),pa(4),pa(5)};
H=unique(P,'rows');
Error using cell/unique (line 95)
Input A must be a cell array of strings.
0 Kommentare
Akzeptierte Antwort
Mischa Kim
am 4 Okt. 2014
pengcheng, use
P = [pa(1),pa(2),pa(3),pa(4),pa(5)];
H = unique(P);
instead.
2 Kommentare
Guillaume
am 4 Okt. 2014
Or even simpler:
P = pa(1:5);
H = unique(P); % don't need the 'rows' option in any case
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Startup and Shutdown 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!