Hi Guys,
I'm trying to use a couple of math functions in my app, namely square and square root. My problem is that I can't find a function to perform the square root. Is there a maths library I can use?
Cheers
Chris
Hi Guys,
I'm trying to use a couple of math functions in my app, namely square and square root. My problem is that I can't find a function to perform the square root. Is there a maths library I can use?
Cheers
Chris
Strange. The common function-name of square root is sqrt and if I search for it in the SDK Help, I find both the syslibs-version (so the standard C/C++ math.h, unadvised on Symbian), and the Symbian-specific one. The same applies to pow, however x*x should be more efficient.
@wizard_hu_ : Thank you sir, I'll have a look for that. Could be that I missed it when I was looking the first time.
@wizard_hu_: Yup, that fixed the problem. Can't believe I missed that. Thanks again.