Check the theory video here:
• Part 15-Linear Convolution Using Circ...
Check how to do circular convolution in matlab:
• Circular Convolution in MATLAB withou...
Linear convolution without conv function code:
x1_n=input('Enter the first sequence');
x2_n=input('Enter the second sequence');
N=length(x1_n);
M=length(x2_n);
S=N+M-1;
X1_K=fft(x1_n,S);
X2_K=fft(x2_n,S);
X3_K=X1_K.*X2_K;
x3_n=ifft(X3_K);
Nesta página do site você pode assistir ao vídeo on-line Linear convolution using Circular convolution(Without conv function)|FAST CONVOLUTION duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário Knowledge Amplifier 24 Novembro 2018, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 4,752 vezes e gostou 42 espectadores. Boa visualização!