필터 지우기
필터 지우기

producing an equation to fit on a plotted data

조회 수: 3 (최근 30일)
milad babaei
milad babaei 2011년 7월 7일
hi all, according to this code and data is there anyway to get an polynomial with low degree( for example 2nd order)or a surface equation to fit our data??please help me what should i do to fit an equation on my data.
code:
data =[0,1,1;0,2,1.02;0,3,1.11;0,4,1.21;0,5,1.30;0,6,1.4;0,7,1.59;0,8,1.78; 10,1,1;10,2,1.11;10,3,1.35;10,4,1.62;10,5,1.95;10,6,2.33;10,7,3.34;10,8,4.77; 20,1,1.01;20,2,1.39;20,3,2.12;20,4,3.29;20,5,5.17;20,6,8.29;20,7,22;20,8,61; 30,1,1.13;30,2,2.5;30,3,6.36;30,4,17.5;30,5,50;30,6,150;30,7,1400;30,8,14800];
mn = arrayfun(@(i1)length(unique(data(:,i1))),2:-1:1); c = mat2cell(reshape(data,mn(1),mn(2),[]),mn(1),mn(2),[1 1 1]); surf(c{:})

답변 (3개)

bym
bym 2011년 7월 8일
create a design matrix of your x & y values like this:
d = [ones(length(data),1),data(:,1),data(:,2),...
data(:,1).^2,data(:,1).*data(:,2),data(:,2).^2];
this represents [ constant, x, y, x^2, x*y, y^2]. Then, to find the coefficients do:
c = d\data(:,3)
  댓글 수: 3
milad babaei
milad babaei 2011년 7월 9일
is there anyway to evaluate the values which are fitted by the equation???
milad babaei
milad babaei 2011년 7월 9일
i run the code >>3.6228426607 is this the constant of equation???this fitted equation be cause of large range of data doesnt fit well..would u plz help me finding another type of equations to fit well?

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


Image Analyst
Image Analyst 2011년 7월 9일

Rick Rosson
Rick Rosson 2011년 7월 7일
Please try:
sftool
or
cftool
HTH.
  댓글 수: 1
milad babaei
milad babaei 2011년 7월 8일
would u please explain more on using sftool??

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

카테고리

Help CenterFile Exchange에서 Linear and Nonlinear Regression에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by