How to generate random vector with boundary limit and with fixed sum? Also ensure to same value when called the function with same parameters.
조회 수: 3 (최근 30일)
이전 댓글 표시
I want to generate random vector between 0 and 1 with fixed sum. I also want to ensure that if i run the function with same value, then it will return me the same values.
I have used the below function but it is returning different vector each time.
Roger Stafford (2021). Random Vectors with Fixed Sum ( https://www.mathworks.com/matlabcentral/fileexchange/9700-random-vectors-with-fixed-sum ), MATLAB Central File Exchange. Retrieved May 10, 2021.
댓글 수: 0
답변 (1개)
KSSV
2021년 5월 10일
rand creates random number every time. If you fix the seed, then you will get the same random number. Read about rng.
댓글 수: 2
Bruno Luong
2021년 5월 10일
편집: Bruno Luong
2021년 5월 10일
The question is more about programing workflow than thet task you want to achieve (random with fixed sum). What you want is soring the resullt for the certain input parameters and use it later when the same inputs are recall.
it seems MATLAB recently add a capability to check function input is the same of what has been passed before than return the same result or do the calculation then store the result. Can't recall the doc page or syntax of such feature.
Otherwise you can use containers.Map object and put such object as persistent variable.
참고 항목
카테고리
Help Center 및 File Exchange에서 Random Number Generation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!