how to create a dft function without using other functions of matlab
조회 수: 20 (최근 30일)
이전 댓글 표시
how to create a discrete fourier transform function with out using other functions of matlab please help regarding this sir.
댓글 수: 4
답변 (1개)
Subhash Mardi
2018년 8월 23일
N=input('enter the sequence'); Y=input('enter the order of sequence'); for n=0:1:N-1; for k=0:1:N-1; p = exp(2*pi*-j*n*k/N); x2(k+1,n+1) = p; end end Xk=x1*x2;
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!