Create a matrix using rand function with a value range
조회 수: 10 (최근 30일)
이전 댓글 표시
Hi all, how can I create a 50x50 matrix using Random (rand) function while the condition is all the values of the matrix will be in between 0 to 0.004?
댓글 수: 0
채택된 답변
Stephen23
2021년 10월 28일
0.004*rand(50,50)
댓글 수: 2
Steven Lord
2021년 10월 28일
That's almost correct. That's the syntax suggested in the "Random Numbers Within Specified Interval" example on the documentation page for the rand function but you're using a and b inconsistently.
You want to generate numbers with the lower limit a being 0 and the upper limit b being 0.004.
a = 0;
b = 0.004;
N = 10;
r = a + (b-a).*rand(N,1)
checkInterval = all((a < r) & (r < b))
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!