convert values to string

조회 수: 3 (최근 30일)
Ingrid
Ingrid 2015년 12월 21일
댓글: Guillaume 2015년 12월 21일
I have a vector with values to define groups (groupValue, in this case 1000x1 array with values from 1 to 5) I also have a cell array with strings for each of these values (labels, 5x1 cell array) I want to have a 1000x1 cell array with strings for the labels instead of values. How can I do this more efficiently i.e. without a for loop?
for kk = 1:nElements
groupLabels{kk} = labels{groupValue(kk)};
end

채택된 답변

Guillaume
Guillaume 2015년 12월 21일
Simply,
groupLabels = labels(groupValue);
  댓글 수: 2
Ingrid
Ingrid 2015년 12월 21일
when I tried this directly (I first tried to do the assignment of the labels to the data directly with indexing larger than threshold values) and then it gave me warnings of improper assignments and dimensions that did not correspond. So I had no clue that in this form it was possible.
Guillaume
Guillaume 2015년 12월 21일
Yes, for this to work groupValue must be integers between 1 and numel(labels). You could precede the above line with:
validateattributes(groupValue, {'numeric'}, {'positive', 'integer', '<=', numel(labels)}, '', 'groupValue'};

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Geoff Hayes
Geoff Hayes 2015년 12월 21일
Ingrid - if labels is your cell array of string labels and groupValue is your integer array of group values (or indices into labels) then perhaps you could try something like
groupLabels = labels(groupValue);

Renato Agurto
Renato Agurto 2015년 12월 21일
hello. This should work
groupLabels = labels(groupValue);

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by