Samples in generating a given signal - MATLAB Answers...
MATLAB Online에서 열기 We have to generate 128 samples of sinusoid with frequency of 3000 Hz, amplitude of 0.8 and sampling rate is 8000 Hz.The correct codes were: >> Fs = 8000; >> t = [0:127]/Fs; >> y = 0.8*sin(2*pi*3000*t); ...