Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

how to find the best curve fit for a set of data?

조회 수: 1 (최근 30일)
Deva Narayanan
Deva Narayanan 2018년 12월 28일
마감: MATLAB Answer Bot 2021년 8월 20일
i have set of data points and want to know the best curve fit equation for this data . can any one explain me
  댓글 수: 2
Image Analyst
Image Analyst 2018년 12월 28일
Do you want to include the flat parts in the fit?
Do you want a piecewise fit, like one for the flat parts and one for the curved parts?
Is there any particular model you'd like (exponential, polynomial, etc.)?
[data, strings, raw] = xlsread('matlab_data.xls')
x1 = data(:, 1);
y1 = data(:, 2);
x2 = data(:, 4);
y2 = data(:, 5);
subplot(2, 1, 1);
plot(x1, y1, 'b-', 'LineWidth', 2);
grid on;
subplot(2, 1, 2);
plot(x2, y2, 'b-', 'LineWidth', 2);
grid on;
0001 Screenshot.png
Deva Narayanan
Deva Narayanan 2018년 12월 29일
yes i need piecewise polynomials for both curved and flat model

답변 (1개)

KSSV
KSSV 2018년 12월 28일
[num,txt,raw] = xlsread('Matlab_data.xls') ;
x1 = num(:,1) ; y1 = num(:,2) ;
p = polyfit(x1,y1,3) ;
x1i = x1 ;
yi = polyval(p,x1i);
y1i = polyval(p,x1);
plot(x1,y1,'r')
hold on
plot(x1i,y1i,'b')

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by