Pelles C forum

C language => Beginner questions => Topic started by: zk52959 on March 09, 2008, 04:50:00 PM

Title: Nth Root
Post by: zk52959 on March 09, 2008, 04:50:00 PM
In C, is there a standard function for calculating the Nth Root of a number?

If not, what is the most efficient way to calculate it?
Title: Re: Nth Root
Post by: severach on March 10, 2008, 12:40:22 AM
Nth root algorithm (http://en.wikipedia.org/wiki/N-th_root_algorithm)
Title: Re: Nth Root
Post by: zk52959 on March 18, 2008, 01:40:16 PM
I tried the algorithm above, but it only seems to work for limited conditions.

An engineer explained to me how I can use the pre-existing pow() function in the <math.h> standard library.


   inverseN = 1.0 / n;

   x = pow(A, inverseN);


This method seems to work for a wider set of conditions.