필터 지우기
필터 지우기

How to find a code for the following algorithm

조회 수: 2 (최근 30일)
may
may 2013년 9월 20일
I want to find the distribution of random variable Z. Suppose X1, X2, ..., Xn are n mutually independent random variables and let Z be their sum:
Z=X1+X2+...+Xn
The distribution of Z can be derived recursively, using the results for sums of two random variables from the following function:
function [answer]=Sum_Of_2_Random_Variables(z)
F=@(y) normpdf(z-y).*normpdf(y);
answer= integral(F,-Inf,Inf);
end
So the algorithm would be as follow:
Algorithm A:
  1. first, define: Y1=X1+X2, and compute the distribution of Y1 ;
  2. then, define: Y2=Y1+X3, and compute the distribution of Y2 ;
  3. and so on, until the distribution of Z can be computed from: Z=Yn=Y(n-1)+Xn
Now I do not know how to write the code for algorithm A. Any help would be appreciated. Thank you.
The main problem I have is the following: Let's say I want to find distribution of Y1=X1+X2 using the following code:
F=@(y)Sum_Of_2_Random_Variables(z-y).*normpdf(y);
answer=integral(F,-Inf,Inf);
This wont work since the input to the function Sum_Of_2_Random_Variables is not of type double.
  • I know that sum of normal random variables is normal random variable, the distribution of random variables Xi's can be any distribution, to simplify the question I chose standard normal distribution. (In my problem the distribution is not normal.)
  댓글 수: 1
may
may 2013년 9월 20일
I just want to know how to call a function including integral recursively.

댓글을 달려면 로그인하십시오.

답변 (1개)

Matt J
Matt J 2013년 9월 21일
편집: Matt J 2013년 9월 21일
It seems like an unnecessarily painful and brute force way to go about this. Rather than using n-fold convolutions, it seems better to use characteristic functions. I.e., take the FFTs of all the pdfs (the characteristic functions of all the Xi), multiply them together, and then take the inverse Fourier transform of the result.
  댓글 수: 5
may
may 2013년 9월 22일
편집: may 2013년 9월 22일
This the characteristic function:
function [res]=Characteristic_function_Product(sigma1,sigma2,mean1,mean2,t)
res=exp(t*(-t*mean1^2*sigma2^2-t*mean2^2*sigma1^2+2*1i*mean1*mean2)/(2*(t^2*sigma1^2*sigma2^2+1)))*(1/sqrt(t^2*sigma1^2*sigma2^2+1));
end
Now I want to calculate its ift:
syms t
B=Characteristic_function_Product(0.1,3,1,2,t);
syms x
answer=ifourier(B, t, x);
the answer would be:
B =
exp(-(t*((226*t)/25 - 4*i))/((9*t^2)/50 + 2))/((9*t^2)/100 + 1)^(1/2)
answer=fourier(exp(- (226*t^2)/(25*((9*t^2)/50 + 2)) + (t*4*i)/((9*t^2)/50 + 2))/((9*t^2)/100 + 1)^(1/2), t, -x)/(2*pi)
Any help would be appreciated thank you.
Matt J
Matt J 2013년 9월 22일
편집: Matt J 2013년 9월 22일
There's no clear reason why you need to be doing this symbolically as opposed to numerically. You've already been attempting numerical integration anyway, using the integral() command.
Just sample your pdfs (or your characterisitic functions if you know them) and use fft() and ifft() instead of trying to do analytic forward and inverse fourier transforms.

댓글을 달려면 로그인하십시오.

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by