cell array contain zeros matrix
7 views (last 30 days)
Show older comments
Pradya Panyainkaew
on 20 Dec 2017
Commented: Michal Dudek
on 27 Feb 2020
How to create cell array size 1X100 which contain zeros matrix size 366X28 in each cell
0 Comments
Accepted Answer
Harish Ramachandran
on 20 Dec 2017
for i=1:100
a{i} = zeros(366,28);
end
Loop through each cell array block and insert a zeros matrix inside.
3 Comments
Michal Dudek
on 27 Feb 2020
Yes, it is possible. Use this code:
a = mat2cell(repmat(zeros(366,28),1,100),366,repmat(28,1,100));
More Answers (0)
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!