how to determine fundamental freq and plot this equation
Show older comments
for last one hour i am stcuk with this equation
x(t) = (summation sign k=-10 to k=10) k^2 * e^(j*6*k*pi*t)
How to sketch its spectrum and calculate its fundamental frequency and period
Plz help me. Give some guideline
Should i open this equation from -10 to +10 by hand and calculate all values..
Accepted Answer
More Answers (7)
Wayne King
on 1 Oct 2011
Hi , One way. I'll just assume a sampling frequency of 100.
Fs = 100;
t = (0:1/Fs:1-(1/Fs))';
X = zeros(100,21);
for k = -10:10
X(:,k+11) = k^2.*exp(1j*2*pi*k*3*t);
end
y = sum(X,2);
1 Comment
Wayne King
on 1 Oct 2011
Then just
y = sum(X,2);
moonman
on 1 Oct 2011
0 votes
moonman
on 1 Oct 2011
0 votes
2 Comments
Wayne King
on 1 Oct 2011
what value of T makes exp(1j*2*pi*k*3*T)=1
think about exp(1j*theta) when is that equal to 1+j0 ? for what values of theta is that equal to 1+j0
moonman
on 1 Oct 2011
moonman
on 1 Oct 2011
0 votes
3 Comments
Wayne King
on 1 Oct 2011
not just when theta=0 when theta = 2*k*pi, think about it. How can you tell 0 from 2*pi,4*pi, etc.
moonman
on 1 Oct 2011
Wayne King
on 1 Oct 2011
Now look at the plot.
Fs = 100;
t = (0:1/Fs:2-(1/Fs))';
X = zeros(200,21);
for k = -10:10
X(:,k+11) = k^2.*exp(1j*2*pi*k*3*t);
end
y = sum(X,2);
plot(t,real(y)); grid on;
set(gca,'xtick',[1/3 2/3 3/3 4/3 5/3])
You see :)
moonman
on 1 Oct 2011
0 votes
1 Comment
Wayne King
on 1 Oct 2011
you're right, look at the plot with the axis tick labels set.
moonman
on 1 Oct 2011
0 votes
5 Comments
moonman
on 1 Oct 2011
Wayne King
on 1 Oct 2011
If the fundamental period is 1/3, the what is the fundamental frequency? It's just the reciprocal. If the whole waveform is repeating every 1/3 seconds, then there are 3 periods in a second, so the frequency is 3 cycles/second.
moonman
on 1 Oct 2011
Wayne King
on 1 Oct 2011
yes. The highest frequency is exp(1j*2*pi*3*10), when k=10. The bandwidth is 30-(-30)=60, so the Nyquist rate is 60 samples/second.
Wayne King
on 1 Oct 2011
I meant yes to your first question, not the question on the Nyquist rate ,the Nyquist rate is 60 samples/second.
moonman
on 2 Oct 2011
0 votes
Categories
Find more on Pulsed Waveforms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!