diff options
author | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2019-12-16 21:31:18 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2019-12-16 21:31:18 +0700 |
commit | e461df7573c2b7b7e26c965d8cf2d8e175d67378 (patch) | |
tree | 193b8439edac52c1749764395fe5f7787889eda9 /usth/MATH2.2/hw/linear | |
parent | c1008fe39217be7f91f0ea23483e747bfbc5743e (diff) | |
download | cp-e461df7573c2b7b7e26c965d8cf2d8e175d67378.tar.gz |
[usth/MATH2.2] Numerical Methods
The future starts now.
Diffstat (limited to 'usth/MATH2.2/hw/linear')
-rwxr-xr-x | usth/MATH2.2/hw/linear | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/usth/MATH2.2/hw/linear b/usth/MATH2.2/hw/linear new file mode 100755 index 0000000..fad7e67 --- /dev/null +++ b/usth/MATH2.2/hw/linear @@ -0,0 +1,11 @@ +#!/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 |