Transferring data from a cell array to a vector
显示 更早的评论
Hello, I have some data in the cell arrays
Atlas{i} ; Atlas{1} ans=122 ; Atlas{2} ans=12 ;
can i convert this data into vector?
回答(2 个)
"can i convert this data into vector?"
>> Atlas = {122,12} ;
>> vec = [Atlas{:}]
vec =
122 12
类别
在 帮助中心 和 File Exchange 中查找有关 Downloads 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!