Removed
-
- User
- Posts: 36
- Joined: Fri Feb 23, 2007 8:00 pm
- Location: New York
Why not using a macro?

Code: Select all
Macro Interpolate(x, y, dx, dy)
((x*dy+y*dx)/(dx+dy))
EndMacro
PB 4.30
Code: Select all
onErrorGoto(?Fred)
-
- User
- Posts: 36
- Joined: Fri Feb 23, 2007 8:00 pm
- Location: New York
didn't we just have that? (added some brackets
)especially if you use mult./div. ..

Code: Select all
Macro Interpolate(x, y, dx, dy)
(((x)*(dy)+(y)*(dx))/((dx)+(dy)))
EndMacro
-
- User
- Posts: 36
- Joined: Fri Feb 23, 2007 8:00 pm
- Location: New York