Borrar filtros
Borrar filtros

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

6 visualizaciones (últimos 30 días)
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 comentarios
Walter Roberson
Walter Roberson el 1 de Jul. de 2020
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 el 1 de Jul. de 2020
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.

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 1 de Jul. de 2020
truncate() the distribution. That will automatically re-scale the pdf so that the probability integral over the given range becomes 1.
  11 comentarios
snr matlb
snr matlb el 2 de Jul. de 2020
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 el 2 de Jul. de 2020
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.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by