You are on page 1of 4

Sinyal Info :

t = 0 : 0.001 : 1;
>> fm = 5;
>> a = 2;
>> x = a * sin (2*pi*fm*t);
>> plot (t,x)
2
1.5
1
0.5
0
-0.5
-1
-1.5
-2

0.1

0.2

0.3

Sinyal Carrier :
>> t=0:0.001:1;
>> fc = 100;

0.4

0.5

0.6

0.7

0.8

0.9

>> b = 2;

2
1.5
1
0.5
0
-0.5
-1
-1.5
-2

0.1

0.2

0.3

>> y = b * sin (2*pi*fc*t);

0.4

>> plot (t,y)

Sinyal Amplitudo :

>> z = (b + x) .*sin (2*pi*fc*t);


>> plot (t,z)

0.5

0.6

0.7

0.8

0.9

4
3
2
1
0
-1
-2
-3
-4

0.1

0.2

0.3

0.4

0.5

0.6

0.7

0.8

0.9

You might also like