public interface FunctionMat
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,
ExecutorService ex)
Computes a matrix based on multivariate input
|
Matrix f(double... x)
x
- the variables to evaluate as part of the functionMatrix f(Vec x)
x
- the variables to evaluate as part of the functionMatrix f(Vec x, Matrix s)
x
- the variables to evaluate as part of the functions
- the matrix to store the result in, or null
if a new
matrix should be allocateds
if s
is not null
Matrix f(Vec x, Matrix s, ExecutorService ex)
x
- the variables to evaluate as part of the functions
- the matrix to store the result in, or null
if a new
matrix should be allocatedex
- the source of threads to use for the computations
if s
is not null
Copyright © 2017. All rights reserved.