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
Satellite Communications Toolbox provides standards-based tools for designing, simulating, and verifying satellite communications systems a...
MATLAB Programs/Code (matlabcoding.com)
No comments