Commit cb1a6c6a authored by Marc Schiller's avatar Marc Schiller
Browse files

Fixed typo in exponential model.

parent ff1c6093
...@@ -65,7 +65,7 @@ public class ExponentialModel extends AbstractModel { ...@@ -65,7 +65,7 @@ public class ExponentialModel extends AbstractModel {
@Override @Override
public String toString() { public String toString() {
return "Exponential Model: exp(u) = " + this.a + " * e^(" + this.c + " * (u + " - this.d + ")) + " + this.b; return "Exponential Model: exp(u) = " + this.a + " * e^(" + this.c + " * (u - " + this.d + ")) + " + this.b;
} }
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment