필터 지우기
필터 지우기

How to identify and erase the cells with the error "Error using fit>iFit (line 348). NaN computed by model function, fitting cannot continue" in an array?

조회 수: 6 (최근 30일)
Dear community,
I have an array (720*1 cell) where in each cell, I have a set of variables x and y. I am estimating the best fit curve for each set. However, my loop stops and gives me the error: "Error using fit>iFit (line 348). NaN computed by model function, fitting cannot continue. Try using or tightening upper and lower bounds on coefficients."
How to identify all the cells with this error and remove them from the array? This is the code that I use:
ft1= fittype( 'power2');
for k = 1 : length(Array_january)
fit_curve{k}= fit(x{k},y{k},ft1);
end
Thank you in advance!
  댓글 수: 6

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

채택된 답변

Ive J
Ive J 2021년 12월 16일
ft1= fittype( 'power2');
fit_curve = cell(length(Array_january), 1); % never forget preallocation!
for k = 1:length(Array_january)
try
fit_curve{k} = fit(x{k}, y{k}, ft1);
catch
fprintf('error encountered index:%d\n', k)
end
end
failedIdx = find(cellfun(@isempty, fit_curve));

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Fit Postprocessing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by