Fixed javadoc.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1179932 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2011-10-07 04:07:23 +00:00
parent db0ac031e7
commit 6f2488d31c
1 changed files with 2 additions and 2 deletions

View File

@ -39,12 +39,12 @@ public class StepFunction implements UnivariateRealFunction {
/**
* Builds a step function from a list of arguments and the corresponding
* values. Specifically, returns the function h(x) defined by <pre></code>
* values. Specifically, returns the function h(x) defined by <pre><code>
* h(x) = y[0] for all x < x[1]
* y[1] for x[1] <= x < x[2]
* ...
* y[y.length] for x >= x[x.length]
* </pre></code>
* </code></pre>
* The value of x[0] is ignored, but it must be strictly less than x[1].
*
* @param x domain values where the function changes value.