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
Reviewed by Irawen
on
08:23
Rating: 5
Unlocking Electrical Engineering with MATLAB & Simulink In the world of electrical engineering, the ability to model, simulate, and an...
MATLAB Programs/Code (matlabcoding.com)
No comments