Documentation of 'jsat.math.FunctionMat' Java class
FunctionMat
jsat.math

Interface FunctionMat



  • public interface FunctionMat
    Interface for representing a function that should return a Matrix object as the result.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      Matrix f(double... x)
      Computes a matrix based on multivariate input
      Matrix f(Vec x)
      Computes a matrix based on multivariate input
      Matrix f(Vec x, Matrix s)
      Computes a matrix based on multivariate input
      Matrix f(Vec x, Matrix s, java.util.concurrent.ExecutorService ex)
      Computes a matrix based on multivariate input
    • Method Detail

      • f

        Matrix f(double... x)
        Computes a matrix based on multivariate input
        Parameters:
        x - the variables to evaluate as part of the function
        Returns:
        the matrix output of the function
      • f

        Matrix f(Vec x)
        Computes a matrix based on multivariate input
        Parameters:
        x - the variables to evaluate as part of the function
        Returns:
        the matrix output of the function
      • f

        Matrix f(Vec x,
                 Matrix s)
        Computes a matrix based on multivariate input
        Parameters:
        x - the variables to evaluate as part of the function
        s - the matrix to store the result in, or null if a new matrix should be allocated
        Returns:
        the matrix containing the results. This is the same object as s if s is not null
      • f

        Matrix f(Vec x,
                 Matrix s,
                 java.util.concurrent.ExecutorService ex)
        Computes a matrix based on multivariate input
        Parameters:
        x - the variables to evaluate as part of the function
        s - the matrix to store the result in, or null if a new matrix should be allocated
        ex - the source of threads to use for the computation
        Returns:
        the matrix containing the results. This is the same object as s if s is not null

DataMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.