ガウス過程回帰 (GPR) モデルの近似で,得られた曲線の式を得ることはできますか?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
未知数a,bと既知の変数xで得られる出力yのとき,ガウス過程回帰モデルで未知数を得ることができますか?
下記では,xからyが得られる場合を想定していると考えております.
また,得られた曲線の式を得ることはできますか?
基礎的ではありますが,ご教示頂ければ幸いです.
x = [0, 10, 20, 40, 80, 160, 320, 500, 750, 1000]';
y = [1,0.995,0.983,0.955,0.917,0.834,0.708,0.613,0.497,0.424]';
gprMdl = fitrgp(x,y);
ypred = predict(gprMdl,x);
plot(x,y,'b.');hold on;plot(x,ypred,'r','LineWidth',1.5);
0 commentaires
Réponses (0)
Voir également
Catégories
En savoir plus sur ガウス過程回帰 dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!