git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1194966 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2011-10-29 18:30:41 +00:00
parent d8e1809529
commit 3ea635a01c
1 changed files with 4 additions and 3 deletions

View File

@ -437,9 +437,10 @@ public class MathArrays {
/**
* Sort an array in place and perform the same reordering of entries on
* other arrays. This method works the same as
* {@link #sortInPlace(double[], double[] ...)}, but allows the order of
* the sort to be provided in the {@code dir} parameter.
* other arrays. This method works the same as the other
* {@link #sortInPlace(double[], double[][]) sortInPlace} method, but
* allows the order of the sort to be provided in the {@code dir}
* parameter.
*
* @param x Array to be sorted and used as a pattern for permutation
* of the other arrays.