how to create a dft function without using other functions of matlab
Mostra commenti meno recenti
how to create a discrete fourier transform function with out using other functions of matlab please help regarding this sir.
4 Commenti
Jan
il 23 Mag 2017
This is not possible: You cannot fo anything meaningful in Matlab without using builtin functions. So please explain exactly what you want.
If this is a homework, post what you have tried so far and ask a specific question.
Naga Sai
il 23 Mag 2017
Stephen23
il 23 Mag 2017
fft, ifft, and fftw are part of basic MATLAB.
Naga Sai
il 31 Mag 2017
Risposte (1)
Subhash Mardi
il 23 Ago 2018
0 voti
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;
Categorie
Scopri di più su Discrete Fourier and Cosine Transforms in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!