由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 简单问题求助
相关主题
同样的模型 matlab比R快吗?effect size calculation in repeated measurements ?
How to use Proc formatstatistics question (转载)
【包子】sample size calculation for logistic reg问题[合集] 这种情况是不是只能用macro?
问个面试问题如何证明:sum of N independent geometric variables is a negative binomial
请教个问题关于 default rate in profit calculationA Sample Size Question (Binomial)
R里如何加速convolution计算binomial test如何算sample size?
what's the probability?问一道关于categorical里proportion的问题
简单统计概念题,求讨论一道概率问题.
相关话题的讨论汇总
话题: when话题: 线性话题: bernolli话题: complexity
进入Statistics版参与讨论
1 (共1页)
p*********g
发帖数: 226
1
有 n 个独立的 Bernolli 随机变量 x_i. p(x_i=1) = a_i. 现要他们和的分布(即和
为0,1,...,n的概率)。有没有复杂度为O(n)的线性算法?递归需要O(n^2).
多谢。
a*****3
发帖数: 601
2
不客气。 这不就是Bin(n,p)分布嘛?
p*********g
发帖数: 226
3
所有 a_i 取相同值的时候确实是binomial。但这里a_i 可以不同。谢谢
感觉上有点和 Fast Fourier transform 沾边。
p*********g
发帖数: 226
4
solved
http://www.mathworks.com/matlabcentral/fileexchange/28488-bernpdf
overall complexity O^*(n), 就是 n 乘上一个 o(n) (o(n) 是比线性还慢的一个函数)
When n > 22, it calculates the distribution of \sum_{i=1}^{n/2} x_i by
invoking the function itself (recursion). So is \sum_{n/2+1}^n x_i. Then
apply convolution on these two results. When n < 22, it just performs
dynamic programming. Since the convolution takes O(n log n) time, so the
overall time complexity is O^*(n).
1 (共1页)
进入Statistics版参与讨论
相关主题
一道概率问题.请教个问题关于 default rate in profit calculation
Kolmogorov-Smirnov test for discrete distributionsR里如何加速convolution计算
normal approximation to binomialwhat's the probability?
Vectorization question简单统计概念题,求讨论
同样的模型 matlab比R快吗?effect size calculation in repeated measurements ?
How to use Proc formatstatistics question (转载)
【包子】sample size calculation for logistic reg问题[合集] 这种情况是不是只能用macro?
问个面试问题如何证明:sum of N independent geometric variables is a negative binomial
相关话题的讨论汇总
话题: when话题: 线性话题: bernolli话题: complexity