diff options
Diffstat (limited to '1322/CH15/EX15.9')
-rwxr-xr-x | 1322/CH15/EX15.9/116ex4.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1322/CH15/EX15.9/116ex4.sce b/1322/CH15/EX15.9/116ex4.sce new file mode 100755 index 000000000..a59fb7631 --- /dev/null +++ b/1322/CH15/EX15.9/116ex4.sce @@ -0,0 +1,10 @@ + +//x/(x-(1/x))
+clear;
+clc;
+close;
+x=poly(0,'x');
+p1=x;
+p2=1/x;
+p3=p1-p2;
+p=p1/p3
|