cell to matrix when loading
显示 更早的评论
The matlab file I am trying to load is a '1x1 cell' that opens to a '77x1 double' when loading it how do I skip the cell and go to the matrix immediately?
回答(1 个)
Fangjun Jiang
2017-11-21
0 个投票
d1={rand(77,1)};
d1{1}(50)
d2=d1{1}
d2(50)
类别
在 帮助中心 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!