From 82e6cf7d1046d6cee16f7e8b044ec33e7ec6c4b7 Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Sun, 16 Feb 2020 14:26:55 +0700 Subject: [usth] Numerical Method is MATH2.4 --- usth/MATH2.2/hw/quadratic | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100755 usth/MATH2.2/hw/quadratic (limited to 'usth/MATH2.2/hw/quadratic') diff --git a/usth/MATH2.2/hw/quadratic b/usth/MATH2.2/hw/quadratic deleted file mode 100755 index b6ea91a..0000000 --- a/usth/MATH2.2/hw/quadratic +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env octave -disp ("Solve quadratic equation a*x^2 + b*x + c = 0"); -a = input ("a = "); -while (a == 0) - disp ("a must be nonzero"); - a = input ("a = "); -end -b = input ("b = "); -c = input ("c = "); - -sd = sqrt(b*b - a*c*4); -disp ("The two solutions of the given quadratic equation are:"); -x0 = (-b - sd) / a / 2 -x1 = (-b + sd) / a / 2 -- cgit 1.4.1