Replacing n random zeros in a matrix with a specific nonzero value

조회 수: 11 (최근 30일)
Suppose I start with a zero matrix
X = zeros(100)
How can I replace n random zeros in matrix X with a single nonzero value (e.g., replace 10 zero elements in the matrix X with 1)?

채택된 답변

madhan ravi
madhan ravi 2020년 10월 2일
X(randperm(numel(X), 10)) = 1

추가 답변 (0개)

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by