save string in matfile
Show older comments
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 Comment
Image Analyst
on 2 Jan 2013
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.
Accepted Answer
More Answers (0)
Categories
Find more on Workspace Variables and MAT Files in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!