error using unique function
조회 수: 22 (최근 30일)
이전 댓글 표시
s is a cell matrix (178000x9) I want to find the unique values of s in the first column. ID=unique(s(:,1));
I received the following error. Error using cell/unique (line 95) Input A must be a cell array of string
what could be the reason?
댓글 수: 1
Sean de Wolski
2012년 7월 26일
If the first column is all non-numeric it would not be throwing that error. What is returned from:
iscellstr(s(:,1))
채택된 답변
Mike Hosea
2012년 7월 26일
편집: Mike Hosea
2012년 7월 26일
What type of data is in the cell array? When you use UNIQUE on a cell array, the only case that's supported is when the elements of the cell array are strings. Is that case not working for you?
>> c = {'abc','abc','def','defg'}';
>> unique(c(:,1))
ans =
'abc'
'def'
'defg'
댓글 수: 7
Mike Hosea
2012년 7월 26일
Yes, this is what we expected. You do not have a cell array of only strings. You can find the non-strings with
find(cellfun(@(x)~ischar(x),s))
You do not mention where this data came from. If it began as a
s = cell(m,n);
and was later partially populated, then you might resolve the problem by changing that to
s = repmat({''},m,n);
추가 답변 (1개)
Wayne King
2012년 7월 26일
편집: Wayne King
2012년 7월 26일
Is it a cell array of numeric values?
You can use cell2mat()
A = {1 5 9 ; 2 3 4; 2 4 5};
B = unique(cell2mat(A(:,1)));
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!