Matlab

Moderators: None (Apply to moderate this forum)
Number of threads: 1494
Number of posts: 2174

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Understanding code Posted by kiwi1010 on 3 Feb 2013 at 9:22 AM
Hi All,

Okay so I am a C programmer who is now programming in MATLAB. For our first college asignment I have to plot 3 sinusoid graphs of 4000 Hz with 25 samples per period. I also have to start from -T. The thing is I have the code. The whole class has the code i just want to understand it better.
Things I don't understand in the code:
* what is the point of fs
*i dont get how 3 graphs result from this

the x1-x3 functions are defined by our teacher.

Thank you:

code:

f = 22050; %frequency of sinusoids
T = 1/f; %period of sinusoids
fs = 20/T; %at least 20 samples per period
tt = -T:(1/fs):2*T; %3 cycles starts at a negative time equal to -T
x1 = 24*cos(2*pi*f*tt+8.8);
x2 = 20*cos(2*pi*f*tt+2);
x3 = x1+x2;

subplot(311);
plot(tt, x1), grid on;
title('x1');
axis tight
subplot(312);
plot(tt, x2), grid on;
title('x2');
axis tight
subplot(313);
plot(tt, x3), grid on;
title('x3');
xlabel('Time (sec)');
axis tight
orient tall

Report
Re: Understanding code Posted by dlichu on 4 Feb 2013 at 10:06 AM
Hi,

When I paste your code into my Matlab I get everything like I should.
x3 = x1+x2; means something like (in C):
suppose that x1, x2 and x3 has the same elements in table,
and it is like 25 (don't know how to get number of elements in table in C, in Matlab you do length(x1) :P)

for (i=1;i<=25;i++)
{
x3(i) = x1(i) + x2(i);
}

If you change fs into higher value, you will get finer charts.
Try enter fs = 5/Tp and see difference :) It means how many points in 1 second of simulation will be in chart.

Best regards,
Marcin



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.