diff options
Diffstat (limited to '2096/CH1/EX1.25.b')
-rwxr-xr-x | 2096/CH1/EX1.25.b/ex_1_25_b.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2096/CH1/EX1.25.b/ex_1_25_b.sce b/2096/CH1/EX1.25.b/ex_1_25_b.sce new file mode 100755 index 000000000..fd85c2040 --- /dev/null +++ b/2096/CH1/EX1.25.b/ex_1_25_b.sce @@ -0,0 +1,11 @@ +//Example 1.25.b // the time lag
+clc;
+clear;
+close;
+//given data :
+t1=50; // in seconds
+t2=500; // in seconds
+w=2*%pi/t2;
+P=atan(w*t1)
+T=(1/w)*P
+disp(T,"the time lag,T(seconds) = ")
|