MatrixAlgebra {GPM} | R Documentation |
GPM
PackageThese functions perform some matrix algebra to calculate the log-likelihood function.
Eigen(A)
CppSolve(A, B)
LowerChol(A)
A |
Numeric, symmetric, and positive definite matrix. |
B |
Numeric matrix or vector. |
Eigen(A))
returns the smallest eigen value of A.
CppSolve(A, B)
solves for X
in AX=B
.
LowerChol(A)
return the lower triangular Cholesky decomposition of A
.
These functions are NOT exported once the GPM package is loaded.
Fit
to see how a GP model can be fitted to a training dataset.
Predict
to use the fitted GP model for prediction.
Draw
to plot the response via the fitted model.
# see the examples in \code{\link[GPM]{Fit}}