table for string

17 次查看(过去 30 天)
Jane
Jane 2012-3-29
编辑: John Kelly 2015-2-26
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!

采纳的回答

Jonathan Sullivan
Jonathan Sullivan 2012-3-29
编辑:John Kelly 2015-2-26
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 个)

类别

Help CenterFile Exchange 中查找有关 Tables 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by