How to create cell array size 1X100 which contain zeros matrix size 366X28 in each cell

 Akzeptierte Antwort

Harish Ramachandran
Harish Ramachandran am 20 Dez. 2017

1 Stimme

for i=1:100
a{i} = zeros(366,28);
end
Loop through each cell array block and insert a zeros matrix inside.

3 Kommentare

Pradya Panyainkaew
Pradya Panyainkaew am 20 Dez. 2017
Thanks so much..Mr.Ramachandran
SM
SM am 11 Feb. 2020
Is it posible to solve the problem without using loop?
Yes, it is possible. Use this code:
a = mat2cell(repmat(zeros(366,28),1,100),366,repmat(28,1,100));

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by