How can i determine the amplitude, phase, period, sampling frequency, circular frequency (Hz), and angular frequency (rad/sec) of the sine wave

1 次查看(过去 30 天)
i have this code
M=10; %samples/sec
n=-3:1/M:3;
A=2;
phase=0;
f=1;
x=A * sin(2*pi*f*n + phase);
stem(n,x,'linewidth', 2)
title('Discrete-Time Sine Wave: A sin(2*\pi*f*n + \phi)')
xlabel('Time Index')
ylabel('Signal Amplitude')
axis([n(1) n(end) -A A])
grid

采纳的回答

Image Analyst
Image Analyst 2014-10-25
Have you taken the Fourier transform or called pwelch()? Try these helpful tutorial links on Fourier Transforms:
Also look up MATLAB demos and webinars where they talk about spectral analysis and the pwelch() function (in the Signal Processing Toolbox) - they just held one a couple of weeks ago. <http://www.mathworks.com/searchresults

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Spectral Measurements 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by