First time here? Check out the FAQ!

Ask Your Question
0

3d data fit

asked 9 years ago

mkr gravatar image

updated 9 years ago

How to fit 3d data of two variables.

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 9 years ago

calc314 gravatar image

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)
Preview: (hide)
link

Comments

Thank you.

mkr gravatar imagemkr ( 9 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 9 years ago

Seen: 718 times

Last updated: May 12 '15