diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /24/CH3/EX3.6/Example3_6.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '24/CH3/EX3.6/Example3_6.sce')
-rwxr-xr-x | 24/CH3/EX3.6/Example3_6.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/24/CH3/EX3.6/Example3_6.sce b/24/CH3/EX3.6/Example3_6.sce new file mode 100755 index 000000000..e08889b9e --- /dev/null +++ b/24/CH3/EX3.6/Example3_6.sce @@ -0,0 +1,10 @@ +exec("degree_rad.sci",-1)
+
+//Given that
+a = [3,-4,0]
+b = [-2,0,3]
+
+//Sample Problem 3-6
+printf("**Sample Problem 3-6**\n")
+angle_ab = acos(-norm(a*b')/(norm(a) * norm(b)))
+printf("The angle between given vectors is %f degress", rtod(angle_ab))
\ No newline at end of file |