create an array
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I wonder how I can make an array (200,400) with values 0 to 7 which randomly distributed? I apperciate your help.
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Sean de Wolski
am 30 Jun. 2011
szs = [20 20 30]; %sizes
vals = [1 0 2]; %values
C = cellfun(@(c,v)ones(c)*v,num2cell(szs),num2cell(vals),'uni',false);
M = blkdiag(C{:});
3 Kommentare
Siehe auch
Kategorien
Mehr zu Data Types finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!