Package weka.core
Interface PLSMatrixAccess
-
- All Known Implementing Classes:
ClassificationViaPLS
,PLSClassifierWeightedWithLoadings
,PLSFilterWithLoadings
public interface PLSMatrixAccess
For classes that allow access to PLS matrices.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description weka.core.matrix.Matrix
getPLS1bHat()
Returns the PLS1 b "hat" matrix.weka.core.matrix.Matrix
getPLS1P()
Returns the PLS1 P matrix.weka.core.matrix.Matrix
getPLS1RegVector()
Returns the reg vector.weka.core.matrix.Matrix
getPLS1W()
Returns the PLS1 W matrix.weka.core.matrix.Matrix
getSimplsB()
Returns the SIMPLS B matrix.weka.core.matrix.Matrix
getSimplsW()
Returns the SIMPLS W matrix.
-
-
-
Method Detail
-
getPLS1RegVector
weka.core.matrix.Matrix getPLS1RegVector()
Returns the reg vector.- Returns:
- the vector
-
getPLS1P
weka.core.matrix.Matrix getPLS1P()
Returns the PLS1 P matrix.- Returns:
- the matrix
-
getPLS1W
weka.core.matrix.Matrix getPLS1W()
Returns the PLS1 W matrix.- Returns:
- the matrix
-
getPLS1bHat
weka.core.matrix.Matrix getPLS1bHat()
Returns the PLS1 b "hat" matrix.- Returns:
- the matrix
-
getSimplsW
weka.core.matrix.Matrix getSimplsW()
Returns the SIMPLS W matrix.- Returns:
- the matrix
-
getSimplsB
weka.core.matrix.Matrix getSimplsB()
Returns the SIMPLS B matrix.- Returns:
- the matrix
-
-