离散均匀分布的分布逆函数,输入累计概率值,返回随机变量值
范例(t):
结果:
[img type=&qu…
范例(t):
y := array(0.01,0.01)->0.99;
return sf_unidinv(y,10);
return sf_unidinv(y,10);
结果:
[img type=&qu…
来源于.NET函数大全
介绍统计各种分布函数前,我们先简单的介绍下概率论理论下常使用的几个函数:
1)perms
列出样本的所有排列或者排列的种类
[code] perms (ar…
1)perms
列出样本的所有排列或者排列的种类
[code] perms (ar…
若随机变量有n个不同值,具有相同概率,则我们称之为离散均匀分布,通常发生在我们不确定各种情况发生的机会,且认为每个机会都相等,例如:投掷骰子等.
设离散随机变量[img type="…
设离散随机变量[img type="…
TinySoft金融分析平台上提供了有关统计分布的函数:概率密度,(累计)分布函数,分位数函数(分布逆函数),随机数函数,估计函数
概率密度,(累计)分布函数,分位数的函数命名使用规…
概率密度,(累计)分布函数,分位数的函数命名使用规…
范例(t):
结果:
[img type="tslxml" fi…
x := 1->10;
return sf_unidpdf(x,10);
return sf_unidpdf(x,10);
结果:
[img type="tslxml" fi…
范例(t):
结果:
[img type="tsl…
x := array(-4,0.1)->4;
return sf_unidcdf(x,0,1);
return sf_unidcdf(x,0,1);
结果:
[img type="tsl…
范例(t):
结果:
[img type=&qu…
y := array(0.01,0.01)->0.99;
return sf_unidinv(y,10);
return sf_unidinv(y,10);
结果:
[img type=&qu…
范例(t):
结果:
[img type=…
return randunid(10,10,array("a","b"));
结果:
[img type=…

