please how to write this in matlab?
4 ビュー (過去 30 日間)
古いコメントを表示
fourier function
- define a sum of cosine waves f=8 HZ
- build it's plot in time domain
- build the plot of it's magnitude spectrumi don't understand how to use the arry in matlab :( :(
0 件のコメント
回答 (2 件)
Ngoc Thanh Hung Bui
2018 年 4 月 16 日
I dont really understand the problem, better more specifically
0 件のコメント
KALYAN ACHARJYA
2018 年 4 月 16 日
編集済み: KALYAN ACHARJYA
2018 年 4 月 16 日
% Are you looking for this one
t=0:1:115;
fs=500 % Assumed Sampling Frequency
f=8; % Given 8 Hz
cw=cos(2*pi*f/fs*t);
subplot(121);stem(cw,'r'); title('Time Domain');
%Read in Signal Processing Book How to find Magnitute Response
fftLength=512;
sigLength=length(cw);
win=rectwin(sigLength)'; % Window Selection 'Ractangular'
y=fft(cw.*win,fftLength);
length=fftLength/2+1;
% Magnitude Response
subplot(122);plot([1:length]*fs/(2*length),abs(y(1:length)));
title('Magnitude Response');
2 件のコメント
参考
カテゴリ
Help Center および File Exchange で Frequency Transformations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!