필터 지우기
필터 지우기

fit結果の各項目毎のプロット

조회 수: 3 (최근 30일)
Shuichi Nagamatsu
Shuichi Nagamatsu 2020년 6월 29일
답변: Akira Agata 2020년 6월 29일
例えばgauss3でフィッティングしたときに
全体のfit結果だけでなく
各項のgaussカーブも表示する方法はありますか?

채택된 답변

Akira Agata
Akira Agata 2020년 6월 29일
関数fitが出力するcfitオブジェクトの中には、近似曲線の各係数が保存されていますので、これを使ってそれぞれのgauss曲線を描画することができます。
% Sample data
x = linspace(0,3*pi);
y = sin(x).^2;
% Fit with 3xGaussian
f = fit(x',y','gauss3','Upper',10*ones(1,6));
% Gaussian shape
fnc = @(a,b,c,x) a*exp(-((x-b)./c).^2);
% Visualize the data
figure
subplot(2,1,1)
plot(x,y)
legend('Original')
subplot(2,1,2)
plot(x,fnc(f.a1,f.b1,f.c1,x))
hold on
plot(x,fnc(f.a2,f.b2,f.c2,x))
plot(x,fnc(f.a3,f.b3,f.c3,x))
legend({'Gauss1','Gauss2','Gauss3'})

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 内挿에 대해 자세히 알아보기

태그

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!