|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object | +--org.jmat.data.matrixTools.Sorting
Quick Sort algoritm.
Allows to sort a column quickly, Using a generic version of C.A.R Hoare's Quick Sort algorithm.
| Constructor Summary | |
Sorting(double[] array,
boolean copyArray)
Construct an ascending order. |
|
| Method Summary | |
int[] |
getIndex()
Get the ascending order of all lines. |
int |
getIndex(int i)
Get the ascending order of one line. |
Matrix |
getIndexMatrix()
Get the ascending order of all lines. |
static void |
main(java.lang.String[] args)
|
static Matrix |
MatrixColumns(Matrix X,
int i)
Sort columns of a Matrix |
static Matrix |
MatrixColumnsIndex(Matrix X,
int i)
Sort columns of a Matrix |
static Matrix |
MatrixRows(Matrix X,
int j)
Sort rows of a Matrix |
static Matrix |
MatrixRowsIndex(Matrix X,
int j)
Sort rows of a Matrix |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public Sorting(double[] array,
boolean copyArray)
array - Array to sort.copyArray - Specify if the sort is made directly : true -> array is modified (usefull for big arrays !), false -> array is copied and not modified (more memory used).| Method Detail |
public static Matrix MatrixRowsIndex(Matrix X,
int j)
X - Matrix to sortj - index of the column to sort
public static Matrix MatrixColumnsIndex(Matrix X,
int i)
X - Matrix to sorti - index of the row to sort
public static Matrix MatrixRows(Matrix X,
int j)
X - Matrix to sortj - index of the column to sort
public static Matrix MatrixColumns(Matrix X,
int i)
X - Matrix to sorti - index of the row to sort
public int getIndex(int i)
i - Line number.
public int[] getIndex()
public Matrix getIndexMatrix()
public static void main(java.lang.String[] args)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||