Wednesday, November 26, 2014

Generation of ASK using MATLAB!!!

Code for generation of ASK using MATLAB!

x=input('input binary message sequence');
N=length(x);
t=0.001:0.001:N;
for i=1:1:N;
   m((i-1)*1000+1:i*1000)=x(i);
end
c1=2*sin(2*pi*5*t);
 y=m.*c1;
 subplot(3,1,1);
 plot(t,m);
 xlabel('Time');
 ylabel('Amplitude');
 Title('Bit sequence');
 subplot(3,1,2);
 plot(t,c1);
 xlabel('Time');
 ylabel('Amplitude');
 Title('Carrier');
 subplot(3,1,3);
 plot(t,y);
 xlabel('Time');
 ylabel('Amplitude');
 Title('ASK signal');

Output:[1 1 0 1 0 1 1 0 ]



        

Generation of PSK using MATLAB!!!

Code for generating PSK signal using MATLAB!!!

x=input('input binary message sequence');
N=length(x);
x(x==0)=-1;
t=0.001:0.001:N;
for i=1:1:N;
   m((i-1)*1000+1:i*1000)=x(i);
end
c1=2*sin(2*pi*5*t);
 y=m.*c1;
 subplot(3,1,1);
 plot(t,m);
 xlabel('Time');
 ylabel('Amplitude');
 Title('Bit sequence');
 subplot(3,1,2);
 plot(t,c1);
 xlabel('Time');
 ylabel('Amplitude');
 Title('Carrier');
 subplot(3,1,3);
 plot(t,y);
 xlabel('Time');
 ylabel('Amplitude');
 Title('PSK signal');
Output:Input sequence [1 1 0 1 0 1 1 0]


         

Generation of FSK signal using MATLAB!!!

Code for generating FSK signal using MATLAB!

x=input('input binary message sequence');
N=length(x);
t=0.001:0.001:N;
for i=1:1:N;
   m((i-1)*1000+1:i*1000)=x(i);
end
f1=10;
f2=5;
c1=2*sin(2*pi*f1*t);
 y1=m.*c1;
 for j=1:N
     if x(j)==1
         x(j)=0;
     else
         x(j)=1;
     end
     m1((j-1)*1000+1:j*1000)=x(j);
 end
 c2=2*sin(2*pi*f2*t);
 y2=m1.*c2;
 y=y1+y2;
 subplot(3,1,1);
 plot(t,m);
 xlabel('Time');
 ylabel('Amplitude');
 Title('Bit sequence');
 subplot(3,1,2);
 plot(t,c1);
 xlabel('Time');
 ylabel('Amplitude');
 Title('Carrier');
 subplot(3,1,3);
 plot(t,y);
 xlabel('Time');
 ylabel('Amplitude');
 Title('Fsk signal');
Output:
 Input sequence [1 0 0 1 1 1 0]
       

Tuesday, November 25, 2014

Microprocessor 8085 programs...

The Microprocessor 8085 programs are available on the following sites with good explanation.
These programs will help you for cracking different competitions related to microprocessor.. 
1.8085projects.info/page/free-programs-for-8085-microprocessor.html
2.www.eazynotes.com/pages/microprocessor/8085-programs.html
3.www.technicalsymposium.com/microprocessor_lab.pdf 

Thursday, September 4, 2014

Then must go through following sites 1.www.learn-c.org/ 2.www.cprogramming.com/ 3.www.learnconline.com/ 4.www.c4learn.com/ 5.www.tutorialspoint.com/cprogramming/ Go through above listed sites that will definately help you. Thanks

Tuesday, July 8, 2014

Want to make a ROBO!!!!!!!!

For making your own robo..........
Just refer the following site
www.robomart.com
1.Buy all components that you need for your robo .
2.At moderate rate.
3.Just GO THROUGH and have FUN.

Tuesday, May 6, 2014

Lectures for engg. students for all branches from NPTEL free!!!

NPTEL provides E-learning through online Web and Video courses in Engineering, Science and humanities streams. The mission of NPTEL is to enhance the quality of Engineering education in the country by providing free online courseware
click on following link and enjoy learning through expert's lectures...
http://nptel.ac.in/
 

Some useful parameters

Dielectric constant  Metals have infinite Dielectric constant  As usually metals permittivity is very large than of free space hence its Die...