summaryrefslogtreecommitdiff
path: root/1574/CH1/EX1.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1574/CH1/EX1.1
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1574/CH1/EX1.1')
-rwxr-xr-x1574/CH1/EX1.1/Result_of_Chapter_1_Ex1_1.JPGbin0 -> 138797 bytes
-rwxr-xr-x1574/CH1/EX1.1/Signals_Ex_1_1.sce15
2 files changed, 15 insertions, 0 deletions
diff --git a/1574/CH1/EX1.1/Result_of_Chapter_1_Ex1_1.JPG b/1574/CH1/EX1.1/Result_of_Chapter_1_Ex1_1.JPG
new file mode 100755
index 000000000..e6e4dc980
--- /dev/null
+++ b/1574/CH1/EX1.1/Result_of_Chapter_1_Ex1_1.JPG
Binary files differ
diff --git a/1574/CH1/EX1.1/Signals_Ex_1_1.sce b/1574/CH1/EX1.1/Signals_Ex_1_1.sce
new file mode 100755
index 000000000..896df35fd
--- /dev/null
+++ b/1574/CH1/EX1.1/Signals_Ex_1_1.sce
@@ -0,0 +1,15 @@
+clc
+//Chapter1: Signals
+//Example1,page no12
+//Given:
+n=round(rand())//any integers
+m=round(rand())//any integers
+wo=2*(n+m)*%pi//Angular Freq
+t=0:0.01:2*%pi/wo
+to=0,t1=2*%pi/wo
+C= integrate('sin(n*wo*t)*cos(m*wo*t)','t',to,t1)// integrating sin(n*wo*t)*cos(m*wo*t) function
+mprintf('The value of the above integral is:C=%d\n Since C=%d, the two functions: \n f(t)=sin(n*wo*t)\n g(t)=cos(n*wo*t) are Orthogonal',C,C)
+
+
+
+