diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2096/CH1/EX1.29 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2096/CH1/EX1.29')
-rwxr-xr-x | 2096/CH1/EX1.29/ex_1_29.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2096/CH1/EX1.29/ex_1_29.sce b/2096/CH1/EX1.29/ex_1_29.sce new file mode 100755 index 000000000..f67aaa427 --- /dev/null +++ b/2096/CH1/EX1.29/ex_1_29.sce @@ -0,0 +1,13 @@ +//Example 1.29 // output
+clc;
+clear;
+close;
+//given data :
+Iin=0.35; // sinusoidl input relation
+t=0.3; // sec
+w=25; // rad/sec
+a=1/sqrt(1+(w*t)^2);
+Io=Iin*a;
+pi=atand(w*t);
+disp(pi,"the phase shift,pi(celcius)")
+disp("the output expression,Io = 0.0462sin(25t-82.4)")
|