summaryrefslogtreecommitdiff
path: root/src/function/SquareRoot.java
diff options
context:
space:
mode:
authorLeonard Kugis <leonard@kug.is>2022-04-25 18:36:30 +0200
committerLeonard Kugis <leonard@kug.is>2022-04-25 18:36:30 +0200
commit84e220b332bfffb0f2dcc39b9697a6fd6691d265 (patch)
tree0b861a9a099017ffd9bf00bae12e33ed6a309bbe /src/function/SquareRoot.java
Initial commitHEADmaster
Diffstat (limited to 'src/function/SquareRoot.java')
-rwxr-xr-xsrc/function/SquareRoot.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/function/SquareRoot.java b/src/function/SquareRoot.java
new file mode 100755
index 0000000..0fbbb6c
--- /dev/null
+++ b/src/function/SquareRoot.java
@@ -0,0 +1,17 @@
+package function;
+
+public class SquareRoot extends Function {
+
+ private double a, b, c;
+
+ public SquareRoot(double a, double b, double c) {
+ this.a = a;
+ this.b = b;
+ this.c = c;
+ }
+
+ public double getY(double x) {
+ return a*Math.pow(b*x, 0.5)+c;
+ }
+
+}