From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 1844/CH5/EX5.2/2.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 1844/CH5/EX5.2/2.sce (limited to '1844/CH5/EX5.2/2.sce') 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 -- cgit