random matrix with a given number of specified elements
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hello,
How can we generate a matrix n x n Whose elements can be only two values AND where number of one of those two elements is given?
For instance, in the 3 x 3 matrix elements can be only 0 et 1, But I want exactly 4 elements to be zeros (and therefore 5 elements to be ones)
Thank you
2 Commenti
madhan ravi
il 3 Ago 2020
Modificato: madhan ravi
il 3 Ago 2020
Did you try something for your homework ?
Risposta accettata
madhan ravi
il 3 Ago 2020
Modificato: madhan ravi
il 3 Ago 2020
v = [repelem(1, 5), repelem(0, 4)];
Wanted = v(reshape(randperm(numel(v)), 3, []))
Più risposte (1)
Bruno Luong
il 3 Ago 2020
Modificato: Bruno Luong
il 3 Ago 2020
User inputs
matsz = [3,3];
n1 = 4; % number of desired 1s, no need to specify for 0s
Generate
B = zeros(matsz); % + 0;
B(randperm(numel(B),n1)) = 1;
Quick check
B
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!