diff options
Diffstat (limited to '2294/CH1/EX1.19.a/EX1_19.sce')
-rwxr-xr-x | 2294/CH1/EX1.19.a/EX1_19.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2294/CH1/EX1.19.a/EX1_19.sce b/2294/CH1/EX1.19.a/EX1_19.sce new file mode 100755 index 000000000..770e948f4 --- /dev/null +++ b/2294/CH1/EX1.19.a/EX1_19.sce @@ -0,0 +1,11 @@ +//Example 1.19.1
+//whether the signal is energy signal or power signal
+clc ;
+ t =0:0.001:10;
+ y= exp (-10*t);
+ E= integrate ( ' ( exp(-10*t)) ^2 ' , ' t ' ,0 ,2* %pi );
+disp (E, ' Energy o f the s i g n a l i s ' );
+ disp ( 'since the energy is finite hence it is energy signal');
+ figure
+plot(t,y,'red');
+xtitle('Required figure');
|