ガウス過程回帰 (GPR) モデルの近似で,得られた曲線の式を得ることはできますか?
2 views (last 30 days)
Show older comments
未知数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 Comments
Answers (0)
See Also
Categories
Find more on ガウス過程回帰 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!