ガウス過程回帰 (GPR) モデルの近似で,得られた曲線の式を得ることはできますか?
조회 수: 4 (최근 30일)
이전 댓글 표시
未知数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
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 ガウス過程回帰에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!