|
ユーザ定義の確率分布の定義
|
|
|
説明
|
|
ユーザ定義の確率分布とその分布の確率変数を定義します。
|
ユーザ定義の確率分布を定義
>
|
__U__ := Statistics[ Distribution ]( PDF = (__t__ -> piecewise(__t__ < 0, 0, __t__ < 3, 1, 0) ) ):
|
分布の確率変数を定義
>
|
__X__ := Statistics[ RandomVariable ]( __U__ ):
|
確率変数の計算
>
|
__Xmean__ := Statistics[ Mean ]( __X__ );
__XCDF2__ := Statistics[ CDF ]( __X__, 2 );
|
| (1.1) |
|
|
Download Help Document
Was this information helpful?