git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1389858 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2012-09-25 13:29:16 +00:00
parent ecd4748cdf
commit 282bb0eaa6
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ import org.apache.commons.math3.util.MathArrays;
* structures. User can for example store a vector of n variables depending on three x, y
* and z free parameters in one array as follows:
* <pre>
* // parameter 0 is x, parameter 1 is y, parameter 3 is z
* // parameter 0 is x, parameter 1 is y, parameter 2 is z
* int parameters = 3;
* DSCompiler compiler = DSCompiler.getCompiler(parameters, order);
* int size = compiler.getSize();