How does Matlab calculate mean squared error in sbiofit?

조회 수: 2 (최근 30일)
Oscar
Oscar 2023년 1월 18일
댓글: Oscar 2023년 1월 19일
I'm fitting a simbiology model to experimental data. After the fit I can see that the model fits the data pretty well. However, the MSE property in the optimresults object returns Inf even though the residuals are not Inf (as shown from the optimresults Output property).

채택된 답변

Arthur Goldsipe
Arthur Goldsipe 2023년 1월 18일
The MSE could be Inf for several reasons. My guess is that you have a poorly posed fitting problem. Did you see any warning messages during the fit? That might give you additional clues.
Also, you can find the MATLAB code that does this calculation in function calcCovBeta of class SimBiology.fit.internal.FitObject, but let me summarize the calculations here. MSE is the sum of the sequares of the residuals divided by the degrees of freedom. If you try to estimate 2 parameters with 2 observations, your degrees of freedom will be 0, and the MSE will be Inf.
If you still don't understand why the MSE is Inf after reading these details, then I suggest sharing reproduction steps. Then, we can step through the calculations in the debugger and see exactly where and why the Inf value occurs.
  댓글 수: 1
Oscar
Oscar 2023년 1월 19일
Hi Arthus, thank you for the prompt response! This answers my question. Thank you!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

커뮤니티

더 많은 답변 보기:  SimBiology Community

카테고리

Help CenterFile Exchange에서 Import Data에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by