diff options
Diffstat (limited to '1844/CH5/EX5.2/2.sce')
-rw-r--r-- | 1844/CH5/EX5.2/2.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/1844/CH5/EX5.2/2.sce b/1844/CH5/EX5.2/2.sce new file mode 100644 index 000000000..172cfd3f1 --- /dev/null +++ b/1844/CH5/EX5.2/2.sce @@ -0,0 +1,23 @@ +clc
+// done for WCB only
+FB=12.4
+if FB < 180 then BB= FB+180;
+else BB= FB-180;
+end
+printf('B.B of AB = %f\n',BB)
+FB=119.8
+if FB < 180 then BB= FB+180;
+else BB= FB-180;
+end
+printf(' B.B of BC = %f\n',BB)
+FB=266.5
+if FB < 180 then BB= FB+180;
+else BB= FB-180;
+end
+printf(' B.B of CD = %f\n',BB)
+FB=354.3
+if FB < 180 then BB= FB+180;
+else BB= FB-180;
+end
+printf(' B.B of DE = %f\n',BB)
+// for the RB values given just change the direction if north put south and if east put west
|