public interface FunctionVec
Modifier and Type | Method and Description |
---|---|
Vec |
f(double... x)
Computes the function value given the input
x |
Vec |
f(Vec x)
Computes the function value given the input
x |
Vec |
f(Vec x,
Vec s)
Computes the function value given the input
x |
Vec |
f(Vec x,
Vec s,
ExecutorService ex)
Computes the function value given the input
x |
Vec f(double... x)
x
x
- the input to compute the output fromVec f(Vec x)
x
x
- the input to compute the output fromVec f(Vec x, Vec s)
x
x
- the input to compute the output froms
- the vector to store the result in, or null
if a new
vector should be allocateds
if s
is not null
Vec f(Vec x, Vec s, ExecutorService ex)
x
x
- the input to compute the output froms
- the vector to store the result in, or null
if a new
vector should be allocatedex
- the source of threads to use for the computations
of s
is not null
Copyright © 2017. All rights reserved.