Example 2 on circular convolution in MATLAB
CODE:
x2_n=[4 3 2 2];
N=4;
X1_K=fft(x1_n,N);
X2_K=fft(x2_n,N);
X3_K=X1_K.*X2_K;
x3_n=ifft(X3_K)
Output:
x3_n =
17 19 22 19
Tackle challenging optimization problems with MATLAB ® software Optimization techniques measure the minimum or maximum value of a given f...
MATLAB Programs/Code (matlabcoding.com)
No comments