Package smile.regression
Class GaussianProcessRegression.JointPrediction
java.lang.Object
smile.regression.GaussianProcessRegression.JointPrediction
- Enclosing class:
GaussianProcessRegression<T>
The joint prediction of multiple data points.
-
Field Summary
Modifier and TypeFieldDescriptionfinal Matrix
The covariance matrix of joint predictive distribution at query points.final double[]
The mean of predictive distribution at query points.final double[]
The standard deviation of predictive distribution at query points.final T[]
The query points where the GP is evaluated. -
Constructor Summary
-
Method Summary
-
Field Details
-
x
The query points where the GP is evaluated. -
mu
public final double[] muThe mean of predictive distribution at query points. -
sd
public final double[] sdThe standard deviation of predictive distribution at query points. -
cov
The covariance matrix of joint predictive distribution at query points.
-
-
Constructor Details
-
JointPrediction
Constructor.- Parameters:
x
- the query points.mu
- the mean of predictive distribution at query points.sd
- the standard deviation of predictive distribution at query points.cov
- the covariance matrix of joint predictive distribution at query points.
-
-
Method Details