about summary refs log tree commit diff
path: root/usth/MATH2.2/hw/linear
diff options
context:
space:
mode:
authorNguyễn Gia Phong <vn.mcsinyx@gmail.com>2020-02-16 14:26:55 +0700
committerNguyễn Gia Phong <vn.mcsinyx@gmail.com>2020-02-16 14:26:55 +0700
commit82e6cf7d1046d6cee16f7e8b044ec33e7ec6c4b7 (patch)
treef7b7ae0bce69070c47a1b31a85bd2bc69dfecf09 /usth/MATH2.2/hw/linear
parent29d1001e2e21eff289bff23412e284c8b2e44595 (diff)
downloadcp-82e6cf7d1046d6cee16f7e8b044ec33e7ec6c4b7.tar.gz
[usth] Numerical Method is MATH2.4
Diffstat (limited to 'usth/MATH2.2/hw/linear')
-rwxr-xr-xusth/MATH2.2/hw/linear11
1 files changed, 0 insertions, 11 deletions
diff --git a/usth/MATH2.2/hw/linear b/usth/MATH2.2/hw/linear
deleted file mode 100755
index fad7e67..0000000
--- a/usth/MATH2.2/hw/linear
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env octave
-disp ("Solve quadratic equation ax + b = 0");
-a = input ("a = ");
-while (a == 0)
-  disp ("a must be nonzero");
-  a = input ("a = ");
-end
-b = input ("b = ");
-
-disp ("The two solutions of the given linear equation is:");
-x = -b / a