Uses of Class
weka.core.Matrix

Packages that use Matrix
Package
Description
 
  • Uses of Matrix in weka.core

    Methods in weka.core that return Matrix
    Modifier and Type
    Method
    Description
    final Matrix
    Matrix.add(Matrix other)
    Deprecated.
    Returns the sum of this matrix with another.
    Matrix.getL()
    Deprecated.
    Returns the L part of the matrix.
    Matrix.getU()
    Deprecated.
    Returns the U part of the matrix.
    final Matrix
    Matrix.multiply(Matrix b)
    Deprecated.
    Returns the multiplication of two matrices
    static Matrix
    Matrix.parseMatlab(String matlab)
    Deprecated.
    creates a matrix from the given Matlab string.
    final Matrix
    Matrix.transpose()
    Deprecated.
    Returns the transpose of a matrix.
    Methods in weka.core with parameters of type Matrix
    Modifier and Type
    Method
    Description
    final Matrix
    Matrix.add(Matrix other)
    Deprecated.
    Returns the sum of this matrix with another.
    final Matrix
    Matrix.multiply(Matrix b)
    Deprecated.
    Returns the multiplication of two matrices
    final double[]
    Matrix.regression(Matrix y, double ridge)
    Deprecated.
    Performs a (ridged) linear regression.
    final double[]
    Matrix.regression(Matrix y, double[] w, double ridge)
    Deprecated.
    Performs a weighted (ridged) linear regression.