Skip to content
Prev 56153 / 63424 Next

R is missing log1p(z) etc for complex numbers z.

Working on my 'Bessel' package, I've re-detected today, that
indeed even C99 standard GLIBC does not contain, a complex
number version of 

   log1p()

Further missing in current R, are, basically these
Error in log1p(z) : unimplemented complex function
Error in expm1(z) : unimplemented complex function
Error in gamma(z) : unimplemented complex function
Error in lgamma(z) : unimplemented complex function
Error in psigamma(z) : unimplemented complex function
Error in digamma(z) : unimplemented complex function
Error in sinpi(z) : unimplemented complex function
Error in cospi(z) : unimplemented complex function
Error in floor(z) : unimplemented complex function
Error in ceiling(z) : unimplemented complex function
--------------

Is anyone aware of Free Software implementations of these,
ideally in C ?

... yes, I think I've found the Julia source code for these,
    nicely written in Julia itself...

Martin