取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

Discussions

Solve problems, and share tips and tricks with other JMP users.
选择语言 隐藏翻译栏
robot
Level VI

Solve y = f(y,x)

Hi,

I would like to use JMP to solve for y in an equation of the form y = f(y,x).  A more precise equation is attached.  This problem seem similar to that discussed in Numerical solver add-in, although a clear solution is not mentioned.

In the attached equation, y is response, x is predictor, and a - k are fitting parameters.

What is the best way for JMP to tackle this?  I am using JMP11.  Thanks!

1 个已接受解答

已接受的解答
Hegedus
Level IV

Re: Solve y = f(y,x)

Hi,

I will make an assumptions: You have a series of data points with both x and y measured.

The way I have handled this in the past since you have an implicit equation, is to recast it as an explicit equation by creating a new function.

If you subtract the left hand elements from both sides you get an equation equal to zero. 

0 = right hand(x,y) -  left hand(x,y)

Now substitute a variable for zero so you have a new equation.

z = right hand(x,y) - left hand(x,y)

Now set Z at all points equal to 0 (zero) and solve as a multi-variable problem.

Caveat I have not done a rigorous error analysis on this technique, but just used in the past with success.

Good Luck.

Andy

在原帖中查看解决方案

2 条回复2
Hegedus
Level IV

Re: Solve y = f(y,x)

Hi,

I will make an assumptions: You have a series of data points with both x and y measured.

The way I have handled this in the past since you have an implicit equation, is to recast it as an explicit equation by creating a new function.

If you subtract the left hand elements from both sides you get an equation equal to zero. 

0 = right hand(x,y) -  left hand(x,y)

Now substitute a variable for zero so you have a new equation.

z = right hand(x,y) - left hand(x,y)

Now set Z at all points equal to 0 (zero) and solve as a multi-variable problem.

Caveat I have not done a rigorous error analysis on this technique, but just used in the past with success.

Good Luck.

Andy

robot
Level VI

Re: Solve y = f(y,x)

Thanks Hegedus, that works!

推荐文章