diff options
Diffstat (limited to '620/CH25/EX25.3/example25_3.sce')
-rw-r--r-- | 620/CH25/EX25.3/example25_3.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/620/CH25/EX25.3/example25_3.sce b/620/CH25/EX25.3/example25_3.sce new file mode 100644 index 000000000..7fc57c686 --- /dev/null +++ b/620/CH25/EX25.3/example25_3.sce @@ -0,0 +1,21 @@ +a=7.5;
+deg_a=53;
+b=3;
+deg_b=12;
+c=5;
+deg_c=-60;
+disp("Part a");
+disp("in polar form A X B has a magnitude of "); disp(a*b);
+disp("with a phase angle (in degrees) of"); disp(deg_a+deg_b);
+disp("Part b");
+disp("in polar form A ÷ B has a magnitude of"); disp(a/b);
+disp("with a phase angle (in degrees) of"); disp(deg_a-deg_b);
+disp("Part c");
+disp("in polar form A X C has a magnitude of"); disp(a*c);
+disp("with a phase angle (in degrees) of"); disp(deg_a+deg_c);
+disp("Part d");
+disp("in polar form A ÷ C has a magnitude of"); disp(a/c);
+disp("with a phase angle (in degrees) of"); disp(deg_a-deg_c);
+disp("Part e");
+disp("in polar form C ÷ B has a magnitude of"); disp(c/b);
+disp("with a phase angle (in degrees) of"); disp(deg_c-deg_b);
\ No newline at end of file |