functiondensity
Density of uniform distribution
Extends from Modelica.Math.Distributions.Interfaces.partialDensity (Common interface of probability density functions).
Information
Syntax
Uniform.density(u, u_min=0, u_max=1);
Description
This function computes the probability density function according to a uniform distribution in a band. Plot of the function:
For more details, see Wikipedia.
Example
density(0.5) // = 1 density(0,-1,1) // = 0.5
See also
Inputs
| Type | Name | Default | Description |
|---|---|---|---|
| Real | u (from partialDensity) | Random number over the real axis (-inf < u < inf) | |
| Real | u_min | 0 | Lower limit of u |
| Real | u_max | 1 | Upper limit of u |
Outputs
| Type | Name | Default | Description |
|---|---|---|---|
| Real | y (from partialDensity) | Density of u |
Revisions
| Date | Description | ||
|---|---|---|---|
| June 22, 2015 |
|