How to generate a random number from a matris

조회 수: 1 (최근 30일)
Mohammad
Mohammad 2023년 1월 6일
편집: Rik 2023년 1월 6일
%%we crate a matrix like this and we whant to generate a random number from matrix that made i dont know how!
Y=randi([0,300],[1,500];
  댓글 수: 2
Rik
Rik 2023년 1월 6일
So you want to select a number at random from the array Y? Or do you simply want to generate some random number?
Mohammad
Mohammad 2023년 1월 6일
이동: Rik 2023년 1월 6일

I whant to genarate a number randomly from y bro

댓글을 달려면 로그인하십시오.

답변 (1개)

Rik
Rik 2023년 1월 6일
편집: Rik 2023년 1월 6일
If you want to select a number randomly from Y, you can use randi directly to index:
Y=randi([0,300],[1,500]);
RandomScalar=Y(randi(end))
RandomScalar = 266
This works because randi(imax) will generate a number between 1 and imax. The end keyword can be used to automatically determine the last position in the array.

카테고리

Help CenterFile Exchange에서 MATLAB Report Generator에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by