From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 24/DEPENDENCIES/Example4_3.sce | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 24/DEPENDENCIES/Example4_3.sce (limited to '24/DEPENDENCIES/Example4_3.sce') 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 -- cgit