split data from workspace
Mostrar comentarios más antiguos
hi everyone, i have MINIST file, it includes 28x28x60000 data, because it is too large, so it couldnot show, so now i want to use 500 data of its, it means 28x28x500, how can i do it, can you help me? thank you
Respuestas (1)
I think Stephen has answered it here.
I would imagine something like
A = zeros(28,28,60000);
D = 500*ones(1,120);
C = mat2cell(A,28,28,D);
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!