Borrar filtros
Borrar filtros

curve fitting toolboxを使った曲線回帰について

3 visualizaciones (últimos 30 días)
shunya hara
shunya hara el 21 de Nov. de 2019
Respondida: Hiro Yoshino el 25 de Nov. de 2019
①回帰曲線を形成した後、その係数をワークスペース内に保存するにはどうすればいいですか?
②また以下のコードを使っているのですが実行したあと白紙のグラフ図がでてきます。それを移さないようにするにはどうしたらよいですか?
%% 近似: '新規近似 1'。
[xData, yData] = prepareCurveData( [], C );
% 近似タイプとオプションを設定します。
ft = fittype( 'gauss1' );
opts = fitoptions( 'Method', 'NonlinearLeastSquares' );
opts.Display = 'Off';
opts.Lower = [-Inf -Inf 0];
opts.StartPoint = [80 6 1.0195564875862];
% モデルをデータに近似します。
[fitresult, gof] = fit( xData, yData, ft, opts );

Respuesta aceptada

Hiro Yoshino
Hiro Yoshino el 25 de Nov. de 2019
(1)
coeffvalues(fitresult)
で係数を取ってこれます。
(2)
私の環境では出てきません…
キャプチャ頂けますか?

Más respuestas (0)

Categorías

Más información sobre 線形回帰と非線形回帰 en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!