table for string
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jane
el 29 de Mzo. de 2012
Editada: John Kelly
el 26 de Feb. de 2015
Hello. I have a problem in making table for string.
There is a numerical value a. Then,i want to convert it to the string, and insert it to the table.
a = 12345; b = num2str(a);
Table(1) = b;
This code makes the Error message come up like this. 'Subscripted assignment dimension mismatch.'
What's the problem of this code?
Please help me!
0 comentarios
Respuesta aceptada
Jonathan Sullivan
el 29 de Mzo. de 2012
Editada: John Kelly
el 26 de Feb. de 2015
You'll need to make you table a cell array. Try this:
a = 12345; b = num2str(a);
Table{1} = b; % Notice the curly brackets. That means its a cell array.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Tables en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!