diff flys-artifacts/src/main/java/de/intevation/flys/artifacts/math/fitting/InvSQPow.java @ 3177:585c0b49e696

Added inverses of the fitting functions. flys-artifacts/trunk@4792 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 26 Jun 2012 06:33:37 +0000
parents
children 59b14bc676ec
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/flys-artifacts/src/main/java/de/intevation/flys/artifacts/math/fitting/InvSQPow.java	Tue Jun 26 06:33:37 2012 +0000
@@ -0,0 +1,36 @@
+package de.intevation.flys.artifacts.math.fitting;
+
+public class InvSQPow
+extends      Function
+{
+    public static final Function INSTANCE = new InvSQPow();
+
+    public InvSQPow() {
+        // TODO: Implement me!
+    }
+
+    @Override
+    public double value(double W, double [] parameters) {
+        // TODO: Implement me!
+        return 0d;
+    }
+
+    @Override
+    public double [] gradient(double Q, double [] parameters) {
+        // TODO: Implement me!
+        return null;
+    }
+
+    @Override
+    public Derivative getDerivative() {
+        // TODO: Implement me!
+        return null;
+    }
+
+    @Override
+    public Function getInverse() {
+        // TODO: Implement me!
+        return null;
+    }
+}
+// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org