Generates continuous uniform cumulative density function values at specified locations in a given interval. |
||
Syntax |
CDF = UnifCDF(Points, Llim, Ulim) |
|
Arguments |
Name |
Description |
Points |
A scalar, vector, or matrix of points where the density function is to be evaluated. |
|
Llim |
Lower limit of the interval. A real scalar. |
|
Ulim |
Upper limit of the interval. A real scalar and must be greater than Llim. |
|
Output |
Name |
Description |
CDF |
A scalar or vector of the density function values at the given points. The same length as Points. |
|
Example |
Find the continuous uniform cumulative density function at points 0 & 0.75 in the interval -1 to 1. |
|
Syntax |
||
cdf = UnifCDF([0,0.75],-1,1) |
||
Result |
||
cdf = 0.5000 0.8750 |
||
See Also: |