Other/simpler notation for num2cell
7 次查看(过去 30 天)
显示 更早的评论
Hi,
is there another notation than - for example - num2cell(50:50:200)? I question because {50:50:200} would create a cell - so i thougth that there is -maybe- a simpler notation for getting a cell-array, without using a function..
Thanks and greetings
0 个评论
采纳的回答
Star Strider
2016-11-20
The results of the two operations are different:
C1 = num2cell(50:50:200)
C2 = {50:50:200}
C1 =
1×4 cell array
[50.0000e+000] [100.0000e+000] [150.0000e+000] [200.0000e+000]
C2 =
cell
[1×4 double]
So what you use to create the cell array depends on what you want it to be.
5 个评论
Star Strider
2016-11-20
No worries!
That is the reason I directed you to the documentation for cell arrays. There are in general several ways to do most things in MATLAB, so what is ‘best’ depends upon the context.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!