summaryrefslogtreecommitdiff
path: root/1340/CH2/EX2.26/2_26.sce
diff options
context:
space:
mode:
Diffstat (limited to '1340/CH2/EX2.26/2_26.sce')
-rwxr-xr-x1340/CH2/EX2.26/2_26.sce11
1 files changed, 0 insertions, 11 deletions
diff --git a/1340/CH2/EX2.26/2_26.sce b/1340/CH2/EX2.26/2_26.sce
deleted file mode 100755
index b3db06ac6..000000000
--- a/1340/CH2/EX2.26/2_26.sce
+++ /dev/null
@@ -1,11 +0,0 @@
-clc;
-syms y y1 y2 x;
-t = %pi/2;j = 0:%pi;
-y = 5*cos(t);disp(y,"at x = pi/2, y =");
-y1 = -5*sin(t);disp(y1,"at x = pi/2, dy/dt =");
-printf("\n neglecting higher order terms");
-k = y + y1*(x-%pi/2);
-disp(k,"linearized y =");
-
-
-