Finding the posterior covariance matrix from MATLAB GPR model

5 visualizaciones (últimos 30 días)
Suhit K
Suhit K el 16 de Mzo. de 2018
Editada: Sterling Baird el 6 de En. de 2021
I am trying to find the posterior covariance matrix from a gaussian process using MatLab. The GP model is formed as follows:
X = featurevector;
Y = label;
GPMdl = fitrgp(X,Y);
and predicting the mean and variance of test points is as follows:
Xnew = newfeaturevectors;
[PredU,PredS] = predict(Xnew,GPMdl)
PredS only gives me the variance vector of the test points. I want to find the covariance matrix of the test points. Any thoughts on how this can be computed?

Respuestas (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by