diff options
Diffstat (limited to '3838/CH2/EX2.4.A/EX2_4_a.sce')
-rw-r--r-- | 3838/CH2/EX2.4.A/EX2_4_a.sce | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/3838/CH2/EX2.4.A/EX2_4_a.sce b/3838/CH2/EX2.4.A/EX2_4_a.sce new file mode 100644 index 000000000..c65402068 --- /dev/null +++ b/3838/CH2/EX2.4.A/EX2_4_a.sce @@ -0,0 +1,7 @@ +//Example 2.4.a
+//Energy of the signal x(t)=(exp(-2*a*t)).u(t)
+clc;
+a=2;
+E=integrate('exp(-a*t)^(2)','t',0,100)//Energy of the given signal
+disp(E)
+disp('AS ENERGY OF THE GIVEN SIGNAL IS FINITE HENCE THE GIVEN SIGNAL IS ENERGY SIGNAL');
|