3 double images stored in a matrix
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Irwan Setiawan
il 29 Set 2022
Commentato: Irwan Setiawan
il 11 Ott 2022
I have 3 images of size 256 x 256, i want to stored them in a matrix 65536 x 3 double
0 Commenti
Risposta accettata
Kevin Holly
il 29 Set 2022
m1 = rand(256);
m2 = rand(256);
m3 = rand(256);
size(m1)
size(m1(:))
M(:,1) = m1(:);
M(:,2) = m2(:);
M(:,3) = m3(:);
size(M)
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!