- () parentheses refer to the cells themselves,
- {} curly braces refer to the cell contents.
how to store the matrix value in cell array?
49 次查看(过去 30 天)
显示 更早的评论
I have matrix C=100 by 10 and I want to store the values of matrix in cell array. The code is not working. Please help me on this
T3=cell(1,10);
for k1=1:n
T3(k1)=C;
end
0 个评论
采纳的回答
Stephen23
2020-9-15
编辑:Stephen23
2020-9-15
If C is a matrix, then you need to use curly braces to access the contents of the cell array T3:
T3 = cell(1,10);
for k1 = 1:n
T3{k1} = C;
end % ^ ^ curly braces
The difference is very simple:
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Cell Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!