Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

generate Matrix using Combination

2 visualizaciones (últimos 30 días)
Raghwan Chitranshu
Raghwan Chitranshu el 25 de En. de 2019
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Hello all,
I wanted to know how to gnerate a binary matrix using combination number of rows and columns
Suppose I want to generate a matrix of 16 columns and 6 rows and wanted to maintain number of 1's in each column to be 3. Then I want to generate a code which must be using combination of 6(number of rows) and 3(number of 1's in each column). So answer is 20 combinations, in that I want to use only 16 combinations as I am having only 16 columns.
Can any one help me.
  1 comentario
Gani
Gani el 15 de Feb. de 2019
Is this something you want ?
function mBinaryMatrix = BinaryRandMatrix(nRows, nColumn, nNum)
mBinaryMatrix = zeros(nRows,nColumn);
for i = 1:nRows
rColumn = randi([1 nColumn],1,nNum); % want to have only 3 1s in each row- so give nNum = 3
mBinaryMatrix(i, rColumn) = 1;
end
end % mBinaryMatrix
Example :
mBinaryMatrix = BinaryRandMatrix(6, 16, 3);

Respuestas (0)

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by