How to turn an array of doubles to cell array

18 次查看(过去 30 天)
How to turn an array of doubles to cell array? I need to use an array of doubles (they are actually integers) and assign this new array into a table variable names, but I keep getting an error: "The VariableNames property must be a cell array, with each element containing one nonempty string."
Thanks,
jennifer
  2 个评论
Guillaume
Guillaume 2017-1-26
And why on earth do you think that changing an array of numbers into a cell array is going to help with the error that clearly says "the ... must be a cell array ... containing ... string"?
Note that the VariableNames of the table is the name of the columns which you can use to access a particular column (e.g. mytable.somevariablename). It's never going to contain number. So your "I need to assign an array of number into a table variable names" does not make any sense.
Please explain what you're trying to do , showing an example of inputs and corresponding desired output.

请先登录,再进行评论。

采纳的回答

the cyclist
the cyclist 2017-1-26
编辑:the cyclist 2017-1-26
You can use the num2cell command to do what you ask.
It may still balk, because the cell contents are numeric. In that case, you could use num2str or sprintf to convert the numeric arrays.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by