Library of interfaces for distribution functions
This package contains partial functions that describe the common interface arguments of the distribution and truncated distribution functions.
Extends from Modelica.Icons.InterfacesPackage (Icon for packages containing interfaces).
Name | Description |
---|---|
partialDensity | Common interface of probability density functions |
partialCumulative | Common interface of cumulative distribution functions |
partialQuantile | Common interface of quantile functions (= inverse cumulative distribution functions) |
partialTruncatedDensity | Common interface of truncated probability density functions |
partialTruncatedCumulative | Common interface of truncated cumulative distribution functions |
partialTruncatedQuantile | Common interface of truncated quantile functions (= inverse cumulative distribution functions) |
Common interface of probability density functions
A partial function containing the common arguments of the probability density functions.
Extends from Modelica.Icons.Function (Icon for functions).
Name | Description |
---|---|
u | Random number over the real axis (-inf < u < inf) |
Name | Description |
---|---|
y | Density of u |
Common interface of cumulative distribution functions
A partial function containing the common arguments of the cumulative distribution functions.
Extends from Modelica.Icons.Function (Icon for functions).
Name | Description |
---|---|
u | Value over the real axis (-inf < u < inf) |
Name | Description |
---|---|
y | Value in the range 0 <= y <= 1 |
Common interface of quantile functions (= inverse cumulative distribution functions)
A partial function containing the common arguments of the quantile functions.
Extends from Modelica.Icons.Function (Icon for functions).
Name | Description |
---|---|
u | Random number in the range 0 <= u <= 1 |
Name | Description |
---|---|
y | Random number u transformed according to the given distribution |
Common interface of truncated probability density functions
A partial function containing the common arguments of the probability density functions of truncated distributions.
Extends from partialDensity (Common interface of probability density functions).
Name | Description |
---|---|
u | Random number over the real axis (-inf < u < inf) |
u_min | Lower limit of u |
u_max | Upper limit of u |
Name | Description |
---|---|
y | Density of u |
Common interface of truncated cumulative distribution functions
A partial function containing the common arguments of the cumulative distribution functions for a truncated distribution.
Extends from partialCumulative (Common interface of cumulative distribution functions).
Name | Description |
---|---|
u | Value over the real axis (-inf < u < inf) |
u_min | Lower limit of u |
u_max | Upper limit of u |
Name | Description |
---|---|
y | Value in the range 0 <= y <= 1 |
Common interface of truncated quantile functions (= inverse cumulative distribution functions)
A partial function containing the common arguments of the quantile functions for truncated distributions.
Extends from partialQuantile (Common interface of quantile functions (= inverse cumulative distribution functions)).
Name | Description |
---|---|
u | Random number in the range 0 <= u <= 1 |
y_min | Lower limit of y |
y_max | Upper limit of y |
Name | Description |
---|---|
y | Random number u transformed according to the given distribution |