Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
vadkudr said:This is example I wrote in Matlab
I think, you can analyze this and answer to your question by yourself
>> a=1:4
a =
1 2 3 4
>> b=5:8
b =
5 6 7 8
Linear convolution
>> conv(a,b)
ans =
5 16 34 60 61 52 32
circullar convolution
>> real(ifft(fft(a).*fft(b)))
ans =
66 68 66 60
linear convolution with periodic signal
>> conv([a a a a],b)
ans =
Columns 1 through 11
5 16 34 60 66 68 66 60 66 68 66
Columns 12 through 19
60 66 68 66 60 61 52 32
>>
thanksThis is example I wrote in Matlab
I think, you can analyze this and answer to your question by yourself
>> a=1:4
a =
1 2 3 4
>> b=5:8
b =
5 6 7 8
Linear convolution
>> conv(a,b)
ans =
5 16 34 60 61 52 32
circullar convolution
>> real(ifft(fft(a).*fft(b)))
ans =
66 68 66 60
linear convolution with periodic signal
>> conv([a a a a],b)
ans =
Columns 1 through 11
5 16 34 60 66 68 66 60 66 68 66
Columns 12 through 19
60 66 68 66 60 61 52 32
>>