ガウス過程回帰 (GPR) モデルの近似で,得られた曲線の式を得ることはできますか?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
未知数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);
![近似曲線](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1233467/%E8%BF%91%E4%BC%BC%E6%9B%B2%E7%B7%9A.jpeg)
0 comentarios
Respuestas (0)
Ver también
Categorías
Más información sobre ガウス過程回帰 en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!