필터 지우기
필터 지우기

How to generate random numbers between min and max value with gevrnd?I

조회 수: 6 (최근 30일)
I have 16 value with distributed by generalized extreme value. I have k, sigma and mu of this data. I want to increase the data with this distribution between 20 and 21. How can I do it, may I get your help with code sharing?
Thanks
  댓글 수: 4
Walter Roberson
Walter Roberson 2020년 7월 1일
Do I understand properly that currently you have the situation where you have a continuous distribution that includes the range 20 to 21, and that you would like to create a new distribution with increased probability between 20 and 21? If the probability from -inf to 20 is currently p1, and the probability from 20 to 21 is p2, and the probability from 21 to infinity is currently p3, that instead of that [p1, p2, p3] situation, you would like a situation where middle section was C times higher, so your distribution would be in sections with probabilities
[(C*p2 - 1)/(p2 - 1) * p1, C*p2, (C*p2 - 1)/(p2 - 1) * p3]
??
If so then note that the pdf would no longer be continuous and that the sigma and mu would change.
snr matlb
snr matlb 2020년 7월 1일
Actually, I have a data which is distributed generalized extreme value. The data between 18-20. I have k, sigma and mu of this data. Now, I want to generate random numbers with this k,sigma and mu (with same distribution) but between 20 and 21.

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

채택된 답변

Walter Roberson
Walter Roberson 2020년 7월 1일
truncate() the distribution. That will automatically re-scale the pdf so that the probability integral over the given range becomes 1.
  댓글 수: 11
snr matlb
snr matlb 2020년 7월 2일
Actually, if I expand hour pies to provide some overcapacities I may get some delay to solve, not miliseconds actually working with minutes. So, I will expand the data but some how with trying to save the distribution as real data to based on real data for further generated. It is better that pure generated numbers I think.
snr matlb
snr matlb 2020년 7월 2일
Unfortınately, I know I have to make some tune to make them provide some constraints to keep the data tuned with mathematical model constraints.

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by