diff options
Diffstat (limited to '2384/CH3/EX3.5/ex3_5.sce')
-rwxr-xr-x | 2384/CH3/EX3.5/ex3_5.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2384/CH3/EX3.5/ex3_5.sce b/2384/CH3/EX3.5/ex3_5.sce new file mode 100755 index 000000000..e5b25dfc6 --- /dev/null +++ b/2384/CH3/EX3.5/ex3_5.sce @@ -0,0 +1,11 @@ +// Exa 3.5
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+theta1 = 60;// in degree
+theta2 = -45;// in degree
+// phase difference
+phi = theta1-theta2;// in degree
+disp(phi,"The phase difference in degree is");
|