Bases: object
Kernel function evaluated at x1 and x2.
| Parameters : | x1 : numpy.ndarray with dtype='f8'
x2 : numpy.ndarray with dtype='f8'
|
|---|---|
| Returns : | K : numpy.ndarray
|
Create a copy of the kernel.
| Returns : | kernel : Kernel
|
|---|
Hessian of the kernel function evaluated at x1 and x2.
| Parameters : | x1 : numpy.ndarray with dtype='f8'
x2 : numpy.ndarray with dtype='f8'
|
|---|---|
| Returns : | H : numpy.ndarray
|
Jacobian of the kernel function evaluated at x1 and x2.
| Parameters : | x1 : numpy.ndarray with dtype='f8'
x2 : numpy.ndarray with dtype='f8'
|
|---|---|
| Returns : | J : numpy.ndarray
|