Removed
-
Dr_Wildrick
- 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))
EndMacroPB 4.30
Code: Select all
onErrorGoto(?Fred)-
Dr_Wildrick
- 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-
Dr_Wildrick
- User

- Posts: 36
- Joined: Fri Feb 23, 2007 8:00 pm
- Location: New York
