필터 지우기
필터 지우기

save string in matfile

조회 수: 16 (최근 30일)
Elysi Cochin
Elysi Cochin 2013년 1월 2일
t1='J for Java';
t2='M for Matlab';
t3='C for cobol';
t4='F for FORTRAN';
can i store strings into a matfile.... if possible how to store these values in a matfile....
text=[t1; t2; t3; t4];
save Matfiletext text
when i did like this error....
??? Error using ==> vertcat
CAT arguments dimensions are not consistent.
Error in ==> Plantmatfile at 11
text=[t1; t2; t3; t4];
  댓글 수: 1
Image Analyst
Image Analyst 2013년 1월 2일
Don't use text as the name of your variable. That is reserved for a built in function of the same name. If you do use that name, you'll destroy the built in function. Call it something like listOfLanguages or languangeMenu or something more descriptive like that.

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

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 1월 2일
편집: Azzi Abdelmalek 2013년 1월 2일
text={t1; t2; t3; t4};
save Matfiletext text
%You can't concatenate vertically t1 and t2, because their size are different, but it's possible in cell array
%to get t1 and t2 use
t1=text{1}
t2=text{2}
% Or you can use
t1='J for Java';
t2='M for Matlab';
t3='C for cobol';
t4='F for FORTRAN';
text=char(t1,t2,t3,t4)
%to get t1 use
t1=strtrim(text(1,:))
  댓글 수: 1
Elysi Cochin
Elysi Cochin 2013년 1월 2일
thank u sir....

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Fortran with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by