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/DEPENDENCIES/Example4_3.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/DEPENDENCIES/Example4_3.sce')
-rwxr-xr-x | 24/DEPENDENCIES/Example4_3.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/24/DEPENDENCIES/Example4_3.sce b/24/DEPENDENCIES/Example4_3.sce new file mode 100755 index 000000000..11ac5d1a0 --- /dev/null +++ b/24/DEPENDENCIES/Example4_3.sce @@ -0,0 +1,12 @@ +exec("Example4_2a.sce",-1)
+clc
+
+//Sample Problem 4-3
+printf("\n**Sample Problem 4-3**\n")
+velocity_v_x = derivat(x)
+velocity_v_y = derivat(y)
+v_time_t = [horner(velocity_v_x,time_t),horner(velocity_v_y,time_t)]
+printf("The velocity vector of the rabbit at t=15sec in m/s is")
+disp(v_time_t)
+printf("The magnitude of the velocity vector is %f m/s\n", norm(v_time_t))
+printf("The angle made by the velocity vector with the x axis in degrees at the same time %f", rtod(atan(v_time_t(2)/v_time_t(1))))
\ No newline at end of file |