Create a new matrix from a mapping process

조회 수: 4 (최근 30일)
matthew arnott
matthew arnott 2013년 4월 18일
I have mapped a set of numbers to a list of strings for example
KS = {'A','B','C'}; VS = [1:3]; x = containers.Map(KS,VS);
I have a 1 coloumn vector that looks like this
'A' 'B' 'B' 'C' 'A'
I want to create a new matrix which maps the letters to their respective numbers - so this would return 1 2 2 3 1
many thanks

채택된 답변

Andrei Bobrov
Andrei Bobrov 2013년 4월 18일
편집: Andrei Bobrov 2013년 4월 18일
Vin = {'A' 'B' 'B' 'C' 'A'};
return1 = [Vin{:}] - 'A' + 1;
or
KS = {'A','B','C'};
VS = [1:3];
Vin = {'A' 'B' 'B' 'C' 'A'};
[~,ii] = ismember(Vin,KS);
out = VS(ii);
  댓글 수: 1
matthew arnott
matthew arnott 2013년 4월 19일
thanks for the help, however the fact that A = 1, B =2 etc is totally random it was just used as an example - however I have managed to loop through the matrix and vertcat a new matrix from the results of the containers.map function.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interpolation of 2-D Selections in 3-D Grids에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by