replacing some string variables by others; a small problem

조회 수: 1 (최근 30일)
antonet
antonet 2013년 3월 13일
Dear all,
i have the following problem
I want to replace the elements of EER with the corresponding elements from EER1
where
EER={datebeg '01/01/2009' '01/07/2009' };
EER1={'1' '2' '3' '4'};
and
datebeg =
'01/11/2009'
Unfortunately the '01/11/2009' is not replace by '1' and I need
to maintain the code as it is; that is using datebeg in EER instead of
'01/11/2009'
Is there a way of doing this?
I use the following code for the replacement
isAW = strcmp(raw(:, 1), 'EE');
AWtext = raw(isAW, 8); % Only the AW rows
for k = 1:numel(EER)
AWtext(strcmp(AWtext, EER{k})) = {EER1{k}};
end
new(isAW) = AWtext;
thanks
  댓글 수: 2
Jan
Jan 2013년 3월 13일
Please post the code you use for replacing the strings. It is confusing, that EER and EER1 have a different number of elements.
antonet
antonet 2013년 3월 13일
편집: antonet 2013년 3월 13일
thanks Jan. sorry for my mistake. this is the code I used
EER={datebeg '01/01/2009' '01/07/2009' };
EER1={'1' '2' '3' };
isAW = strcmp(raw(:, 1), 'EE');
AWtext = raw(isAW, 8); % Only the AW rows
for k = 1:numel(EER)
AWtext(strcmp(AWtext, EER{k})) = {EER1{k}};
end
new(isAW) = AWtext;
where raw is a matrix
With thte above code I replace all the elements that I want apart from the first one

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

채택된 답변

Walter Roberson
Walter Roberson 2013년 3월 13일
containers.map perhaps ?
  댓글 수: 1
antonet
antonet 2013년 3월 13일
Sorry I am asking but how does this function fit to the above example. Could you display some code
many thanks

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

추가 답변 (0개)

카테고리

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