How can i randomly insert 14 1's in a array of two thousand zeros?

조회 수: 2 (최근 30일)
i.e. I have a array of two thousand zeros, in this I want to randomly insert 1, fourteen times. How can I do this?

채택된 답변

John D'Errico
John D'Errico 2020년 8월 7일
A = zeros(1,2000);
A(randperm(2000,14)) = 1;

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by