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

10 次查看(过去 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