How can I create a bigger matrix/array, having 200 zeros matrices in it?
Mostrar comentarios más antiguos
I want to compute HSV histograms for 200 images, and for this purpose I have to initialize 200 zeros matrices for computing and saving the values in each zeros matrix. How can I do that in MATLAB? Thanks
Respuestas (2)
Azzi Abdelmalek
el 8 de Abr. de 2014
َََA=arraufun(@(x) zeros(256),1:200,'un',0)
1 comentario
Rida
el 8 de Abr. de 2014
dpb
el 8 de Abr. de 2014
Presuming you fix the number of bins for each, just
h=zeros(200,nBins); % should do it
If you're going to use different sizes, you'd either use cell or perhaps nan instead of zeros to have the indicator missing value in an array.
I'd wonder if you couldn't, however, write the processing to not need all 200 of them in memory at the same time.
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!