Sunday, May 6, 2012

Love Signal

If you are engineers, you should familiar with signals. Actually, since high school we already introduced with signals. Name it, sine signal, cosine signal, step signal, ramp signal, and impulse signal.

But, who knows about LOVE SIGNAL? How is its form? How to express it mathematically?

Here I show you how is Love signal looks like. You can also try with Matlab. Let's have fun.



%----------------------------------------------------------------------------------------------------------
%%%%%%%% LOVE SIGNAL  %%%%%%

% created by: Edwina Maryami
% 3 May 2012, 7:36 PM

clc
clear all
close all

theta = -pi:0.01:pi;
for k=1:3
    x=k*theta;
plot(x,abs(sin(x)/2),'m','LineWidth',3),title('LOVE SIGNAL'), grid on
hold on
plot(x,-abs(sawtooth(x/2,0.5)),'m','LineWidth',3)
hold off
end

%----------------------------------------------------------------------------------------------------------







No comments:

Post a Comment

LinkWithin

Related Posts Plugin for WordPress, Blogger...