public class IsotonicMDS extends Object
Constructor and Description |
---|
IsotonicMDS(double[][] proximity)
Constructor.
|
IsotonicMDS(double[][] proximity,
double[][] coordinates)
Constructor.
|
IsotonicMDS(double[][] proximity,
double[][] init,
double tol,
int maxIter)
Constructor.
|
IsotonicMDS(double[][] proximity,
int k)
Constructor.
|
IsotonicMDS(double[][] proximity,
int k,
double tol,
int maxIter)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
double[][] |
getCoordinates()
Returns the coordinates of projected data.
|
double |
getStress()
Returns the final stress achieved.
|
public IsotonicMDS(double[][] proximity)
proximity
- the nonnegative proximity matrix of dissimilarities. The
diagonal should be zero and all other elements should be positive and symmetric.public IsotonicMDS(double[][] proximity, int k)
proximity
- the nonnegative proximity matrix of dissimilarities. The
diagonal should be zero and all other elements should be positive and symmetric.k
- the dimension of the projection.public IsotonicMDS(double[][] proximity, double[][] coordinates)
proximity
- the nonnegative proximity matrix of dissimilarities. The
diagonal should be zero and all other elements should be positive and symmetric.coordinates
- the initial projected coordinates, of which the column
size is the projection dimension.public IsotonicMDS(double[][] proximity, int k, double tol, int maxIter)
proximity
- the nonnegative proximity matrix of dissimilarities. The
diagonal should be zero and all other elements should be positive and symmetric.k
- the dimension of the projection.tol
- tolerance for stopping iterations.maxIter
- maximum number of iterations.public IsotonicMDS(double[][] proximity, double[][] init, double tol, int maxIter)
proximity
- the nonnegative proximity matrix of dissimilarities. The
diagonal should be zero and all other elements should be positive and symmetric.init
- the initial projected coordinates, of which the column
size is the projection dimension.tol
- tolerance for stopping iterations.maxIter
- maximum number of iterations.Copyright © 2015. All rights reserved.