Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Help me about a code
1 回表示 (過去 30 日間)
古いコメントを表示
If this code that I did it of fast Fourier transform that matlab use in y=fft(x),
X = xlsread('Arrastre.xls',1,'B1:B1441');%presiom
[N,M] = size(X);
y = zeros (N,1);
n = 0 : N-1;
for k = 0 : N-1
y(k+1) = sum(exp(-j*2*pi*n*k/N)*X);
end
y;
How is the code for DCT or Discrete Fourier transform that matlab use for y=dct(x)?
1 件のコメント
回答 (1 件)
Walter Roberson
2016 年 9 月 18 日
編集済み: Walter Roberson
2016 年 9 月 18 日
2 件のコメント
Walter Roberson
2016 年 9 月 18 日
If you have the Signal Processing Toolbox then you can
dbtype dct
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!