Friday, April 13, 2012

Base band signal generation Using Matlab

a=input('enter the sequence')
k=length(a)
t=[0.01:0.01:k]
for i=1:1:k
    m((i-1)*100+1:i*100)=a(i)
end
plot(m)
xlabel('time')
ylabel('amplitude')
title('base band signal')

No comments:

Post a Comment

DC motor control with Pulse Width Modulation Part 1

DC Motor intro DC motor is a device which converts electrical energy into kinetic energy. It converts the DC power into movement. The typica...