Wednesday 22 June 2016

Procedure of circular convolution

Circular Convolution

if u like step by step learning. This post could help. Thank u for visiting my blog

solving circular convolution is just like solving graphical linear convolution.

three easy steps:
1. Fold
2. Shift 
3. Multiply 
And get the answers

Let the two sequences be x1(n)={1, 1, 2, 2}
x2(n)={1, 2, 3, 4}


for x(-n) enter the elements in counter clockwise direction. Multiply it to x2(n). Don't change x2(n). The result u will get after element by element multiplication and adding all the elements of result will be x3(0). You can check it by formula.


Then rotate the ring by 1 unit in clockwise direction. It will be x1(1-n). Multiply x1(1-n) by x2(n). Remember x2(n) will not change. The result after multiplication and adding all the elements of result is x3(2).

same will happen with x1(2-n) and x1(3-n)

Therefore the result is
x3(n)={15, 17, 15, 13}

Friday 3 June 2016

Linear convolution

Graphical Linear convolution
i m writing in msg language. Its true muje convolution smjne me bhut problem ayi. And even didn't get it for 3 sem . 
lets start. Take two signals x(n) and h(n). We can vertically fold any of the two signals. Consider h(n).  But notice we have to fold by k not n 
therefore we take a dummy variable k. This i shown in the picture below. Now we can fold. Or take the mirror image of h(k). This also i had shown.
Now we multiply x(k) with h(-k) point to point multiplication.

now shift h(-k) by 1 rightwards. This would be h(1-k). Now again multiply h(1-k) by x(k). The result would be y(1). Similarly do with h(2-k) , h(3-k) and so on to give y(2), y(3).

so we obtain y(0), y(1),..………
and now y(n)={y(0), y(1),……………}

i m attaching a video becoz i didn't get folding and shifting easily.so that is my visualization

Program to solve 4 variable equation(octave code)

function [x,y,z,alpha]=eq4variable( aaaa1,bbbb1,dddd1,eeee1,cccc1,aaaa2,bbbb2,dddd2,eeee2,cccc2,aaaa3,bbbb3,dddd3,eeee3,cccc3,aaaa4,bbbb4,d...