ID:149690
 

im having a problem figuring square root of a variable.

if anyone has a snippit or an equation i can program in it would help... alot.

thank you,

Jobey
Look up sqrt() in the reference.
In response to Nadrew
thanks
In response to jobe
jobe wrote:
thanks

Besides sqrt(), the ** operator will also work.
sqrt(x)
x ** 0.5

Just watch out that x>=0, or else it will take on an undefined value.

Lummox JR