Amplitude Modulation using Matlab 7.0
Its the first project given by my professor..Firstly i make a search for it on internet and collected some resource..then with the help of some of my mates i completed it successfully.Here is the Matlab code for Amplitude Modulation using Matlab 7.0.Now i am trying to generate code for frequency modulation.Now a days CDMA (code division multiplexing) technology is used which has less noise in the out put as compared to other FDMA or TDMA.
Matlab code for AM
t=0:0.001:1;
vd=8*cos(2*pi*5*t);
vc=0.1*cos(2*pi*15*t);
ft=vc.*vd;
am=ft+vc;
figure(1)
plot(t,vd);
figure(2)
plot(t,vc);
figure(3)
plot(t,am);
Here is the output of the coding!
Carrier signal
Orignal singal(information signal)Amplitude Modulated signal
14 Comments:
thank you mate! it has helped a lot...
but could you explain to me what does that ".*" mean?
edumarques@hotmail.com
c ya
very good
this is usefull for us
thank a lot
".*" is used for element by element multiplication of vectors/matrices
thanks for your post on amplitude modulation. It's a great help to me.
Thank you, helped a lot. :)
Thank u sooooo much ........it helped me a lot ......but i did not get y ur multiplying ft=vc.*vd and then adding am=ft+vc .........?plz can u clarify it to me ...
mail me at chethan.555@gmail.com
Thank u sooooo much ........it helped me a lot ......but i did not get y ur multiplying ft=vc.*vd and then adding am=ft+vc .........?plz can u clarify it to me ...
mail me at chethan.555@gmail.com
nice. thanks
thanks.. it works perfectly.The 4th line of the code itself provides the result then why do we go for 5th line and wats the purpose of it??can you clarify it?
mail id: stri.suba@gmail.com
This comment has been removed by the author.
This comment has been removed by the author.
This comment has been removed by the author.
kindlt tell me purpose of 5thline
hey dudes....
the fifth line is adding carrier. if it is vd x vc alone, it is DSSC u knw.? if we want DSFC, we must add carrier also. dats al.
Post a Comment
<< Home