In the last version I downloaded, the sqrt() function returns the positive and negative solutions in a vector array.
Can I force it to return only the positive value in in a scalar, without defining a user function or using a sub index?
I have to work with direction vectors, vectors length, and vectors normalizations, and it gets quite a mess with the positive and negative solutions.
I did define "mysqrt(x) = sqrt(x) sub 1", but it is not very elegant.
Thanks.