Hi,
The eqn below is returning error with K =-1.#IND
k = arc cosine(-(g/2i)
which I coded as
Code:
k = Acos(-(g / 2 * i))
Will appreciate any responses...Quote:
where
g=4.0740740740740744
i=8.3356375415197839
Printable View
Hi,
The eqn below is returning error with K =-1.#IND
k = arc cosine(-(g/2i)
which I coded as
Code:
k = Acos(-(g / 2 * i))
Will appreciate any responses...Quote:
where
g=4.0740740740740744
i=8.3356375415197839
acos (according to docs) only accepts Cosine as a value.
so it needs a value passed to it in the range of -1 to 1.
your number you are passing it is much smaller than -1.
Hi Orwell,
Thanks for your inputs;