![]() |
| サイトマップ | |
|
指数分布の確率密度関数です。指定した引数値における、累積分布関数の傾きの値を返します。
expden
(x, a)
引数 x は独立変数で、スカラーもしくは範囲として与えられた数値を指定します。x が範囲の場合は、中括弧 {}
を使用して定義するか、ワークシートの列を指定して定義する必要があります。x の値は実数でなければなりません。引数 a は正の数のスケールパラメーターです。
expden(1,3)
* .1 = .014936
This function is the exponential distribution’s probability density function. It returns the value of the slope of the cumulative distribution function at the specified argument value.
expden(x,a)
The x argument represents the independent variable and can either be a scalar or a range of numbers. If x is a range, then it must be defined by either using braces { } or by specifying a worksheet column. Any value for x must be real. The a argument is any positive number and is the scale parameter.
The density function can be used to estimate the probability that the values of an exponentially distributed random variable X lie in a small interval. If X has scale parameter equal to 3, then to estimate the probability that the values of X lie between 1 and 1.1, multiply the density of X at 1 by the length of the interval .1:
expden(1,3) * .1 = .014936