Convolution between two different distribution

3 views (last 30 days)
jafar
jafar on 6 Oct 2015
Commented: jafar on 6 Oct 2015
Hello
I want to generate C(u) in the following:
C(u)=a(-u)*b(u) {a(-u) convolution b(u)}
which a is impulsive (for example [0 0 0 0 0 1 0 0 0 0]) and b is a probability distribution (for example a Normal distribution)
Thank you
  6 Comments

Sign in to comment.

Answers (1)

Image Analyst
Image Analyst on 6 Oct 2015
If the origin is halfway between elements 5 and 6 of "a", then just do
C = conv(fliplr(a), b, 'full');
  1 Comment
jafar
jafar on 6 Oct 2015
Thank You
No!
The origin is not halfway between elements 5 and 6 of "a", it is on zero,

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!