|
SOLUTIONS
|
MATHEMATICA 内置符号
CensoredDistribution
CensoredDistribution[{xmin, xmax}, dist]
表示的分布值来自于 dist,并且被删截为位于
和
之间.
CensoredDistribution[{{xmin, xmax}, {ymin, ymax}, ...}, dist]
表示的分布值来自于多变量分布 dist,并且被删截为位于
和
、
和
等之间.
更多信息更多信息
- CensoredDistribution[{xmin, xmax}, dist] 等价于 TransformedDistribution[f, x
dist],其中 f 由 Piecewise[{{xmin, x<=xmin}, {x, xmin<x<xmax}, {xmax, x>=xmax}}] 给出.
的常见情形包括:-
{-∞,xmax} 从上端删截,右删截 {xmin,∞} 从下端删截,左删截 {xmin,xmax} 双面删截,区间删截 {-∞,∞},None 无删截 - CensoredDistribution 可与 Mean、CDF、RandomVariate 等函数联合使用.
版本 8 的新功能
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »


