Polyfitting warning

조회 수: 12 (최근 30일)
olski one
olski one 2011년 5월 15일
hey guys,
when I am using the polyfit function i get the following error printing in the command window:
"Warning: Polynomial is badly conditioned. Add points with distinct X values, reduce the degree of the polynomial, or try centering and scaling as described in HELP POLYFIT. "
I was wondering if there is a way to suppress the printing of this warning in the command window. I know what I am trying to do is correct for this situation. but I just wish it would stop printing it.
  댓글 수: 2
Matt Fig
Matt Fig 2011년 5월 15일
This is not an error, but a warning message. An error would prevent you from getting a return value...
olski one
olski one 2011년 5월 15일
yeah sorry thats what i meant

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

채택된 답변

Matt Fig
Matt Fig 2011년 5월 15일
I'll take you at your word that you know what you are doing.
ws = warning('off','all'); % Turn off warning
P = polyfit(x,y,N);
warning(ws) % Turn it back on.

추가 답변 (2개)

John D'Errico
John D'Errico 2011년 5월 15일
If you are getting that error message, then you are probably computing garbage for the coefficients of the polynomial. Don't suppress the warning, even while that IS possible to do. (help warning)
Deal with the problem and the message goes away. It is usually either due to overfitting the data with too high order of a model, or with poor scaling of your data. If you start suppressing the warning, then you won't be told when you DO have a problem. Closing your eyes does not make a problem go away.

Arturo Moncada-Torres
Arturo Moncada-Torres 2011년 5월 15일
Mmm, there is a cheap way:
try
% The code with the polyfit function goes here
catch
end
However I really recommend you to check that what you are doing is correct.
Hope it helps ;-) .
  댓글 수: 2
Matt Fig
Matt Fig 2011년 5월 15일
TRY-CATCH has no effect with Warnings...
Arturo Moncada-Torres
Arturo Moncada-Torres 2011년 5월 16일
Oh really? I think then I have used it with error messages only. Anyway, it is good to know, thanks! =)

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

카테고리

Help CenterFile Exchange에서 Array and Matrix Mathematics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by