conversion double to array
231 次查看(过去 30 天)
显示 更早的评论
i have data in double format and i want that data in array format
inder 34*1 double
it should be in this format
inder {...................}
3 个评论
the cyclist
2021-5-27
@Muhammad SULAMAN, it may seem to you that it is clear what you want, but it is not.
data {}
isn't meaningful MATLAB syntax in any way.
I'll reiterate @Geoff Hayes's suggestion that you give a small example -- using valid MATLAB syntax -- of what the input you have, and the output you want. (The input seems clear to me, but not the output.)
Also, see my solution. Is that what you want? If not, explain why.
采纳的回答
the cyclist
2021-5-27
If you want your 34x1 double to be in a single cell of a cell array, then ...
inder = rand(34,1);
inderCell1 = {inder}
If you instead want a 34x1 cell array, where each element is in its own cell, then
inderCell34 = num2cell(inder)
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!