Randomly changing a value of a matrix

조회 수: 1 (최근 30일)
Phillip Smith
Phillip Smith 2019년 11월 21일
댓글: Phillip Smith 2019년 11월 21일
Hello,
I've made a 5x5 matrix of zeros,
I want to randomly change one of the elements to a 1
How would i go about this?
Many thanks

채택된 답변

the cyclist
the cyclist 2019년 11월 21일
편집: the cyclist 2019년 11월 21일
M = zeros(5,5);
M(randi(25)) = 1;
This algorithm takes advantage of the power of linear indexing.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by