3d data fit
How to fit 3d data of two variables.
How to fit 3d data of two variables.
One option is to use find_fit
.
Here is some sample code.
# example data
f(x,y) = x^2+y^2
data=[]
for i in range(0,10):
for j in range(0,10):
data.append([i,j,f(i,j)])
# do the fitting
var('a b c')
model(x,y)=a*x^2+b*x*y+c*y^2
find_fit(data,model)
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2015-05-11 21:58:00 +0100
Seen: 597 times
Last updated: May 12 '15