Rev 59517 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/** R : A Computer Language for Statistical Data Analysis* Copyright (C) 1995, 1996, 1997 Robert Gentleman and Ross Ihaka* Copyright (C) 2000-11 The R Core Team.* Copyright (C) 2005 The R Foundation** This program is free software; you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation; either version 2 of the License, or* (at your option) any later version.** This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.** You should have received a copy of the GNU General Public License* along with this program; if not, a copy is available at* http://www.r-project.org/Licenses/*/#ifdef HAVE_CONFIG_H#include <config.h>#endif/* Note: gcc may warn in several places about C99 features as extensions.This is a very-long-standing GCC bug, http://gcc.gnu.org/PR7263The system <complex.h> header can work around it: some do.*/#if 0/* For testing substitute fns */#undef HAVE_CARG#undef HAVE_CABS#undef HAVE_CPOW#undef HAVE_CEXP#undef HAVE_CLOG#undef HAVE_CSQRT#undef HAVE_CSIN#undef HAVE_CCOS#undef HAVE_CTAN#undef HAVE_CASIN#undef HAVE_CACOS#undef HAVE_CATAN#undef HAVE_CSINH#undef HAVE_CCOSH#undef HAVE_CTANH#endif#ifdef __CYGWIN__/* as of 1.7.8 it had cacos, but it does not work */#undef HAVE_CACOS#endif#ifdef __SUNPRO_C/* segfaults in Solaris Studio 12.3 */#undef HAVE_CPOW#endif#include <Defn.h> /* -> ../include/R_ext/Complex.h */#include <Rmath.h>#include <R_ext/Applic.h> /* R_cpoly */#include "arithmetic.h" /* complex_* */#include <complex.h>/* GCC has problems with header files on e.g. Solaris.That OS defines the imaginary type, but GCC does not.Probably needed elsewhere, e.g. AIX, HP-UX (PR#15083)And use on Win32/64 suppresses warnings.The warning is also seen on Mac OS 10.5, but not later.*/#if defined(__GNUC__) && (defined(__sun__) || defined(__hpux__) || defined(Win32))# undef I# define I (__extension__ 1.0iF)#endif/*Note: this could use the C11 CMPLX() macro.As could mycpow, z_tan and some of the substitutes.*/static R_INLINE double complex toC99(Rcomplex *x){#if __GNUC__double complex ans = (double complex) 0; /* -Wall */__real__ ans = x->r;__imag__ ans = x->i;return ans;#elsereturn x->r + x->i * I;#endif}#define C99_COMPLEX2(x, i) toC99(COMPLEX(x) + i)static R_INLINE voidSET_C99_COMPLEX(Rcomplex *x, int i, double complex value){Rcomplex *ans = x+i;ans->r = creal(value);ans->i = cimag(value);}SEXP attribute_hidden complex_unary(ARITHOP_TYPE code, SEXP s1, SEXP call){int i, n;SEXP ans;switch(code) {case PLUSOP:return s1;case MINUSOP:ans = duplicate(s1);n = LENGTH(s1);for (i = 0; i < n; i++) {Rcomplex x = COMPLEX(s1)[i];COMPLEX(ans)[i].r = -x.r;COMPLEX(ans)[i].i = -x.i;}return ans;default:errorcall(call, _("invalid complex unary operator"));}return R_NilValue; /* -Wall */}static R_INLINE double complex R_cpow_n(double complex X, int k){if(k == 0) return (double complex) 1.;else if(k == 1) return X;else if(k < 0) return 1. / R_cpow_n(X, -k);else {/* k > 0 */double complex z = (double complex) 1.;;while (k > 0) {if (k & 1) z = z * X;if (k == 1) break;k >>= 1; /* efficient division by 2; now have k >= 1 */X = X * X;}return z;}}#if defined(Win32)# undef HAVE_CPOW#endif/* reason for this:1) X^n (e.g. for n = +/- 2, 3) is unnecessarily inaccurate in glibc;cut-off 65536 : guided from empirical speed measurements2) On Mingw (but not Mingw-w64) the system cpow is explicitly linkedagainst the (slow) MSVCRT pow, and gets (0+0i)^Y as 0+0i for all Y.3) PPC Mac OS X crashes on powers of 0+0i (at least under Rosetta).Really 0i^-1 should by Inf+NaNi, but getting that portably seems too hard.(C1x's CMPLX will eventually be possible.)*/static double complex mycpow (double complex X, double complex Y){double complex Z;double yr = creal(Y), yi = cimag(Y);int k;if (X == 0.0) {if (yi == 0.0) Z = R_pow(0.0, yr); else Z = R_NaN + R_NaN*I;} else if (yi == 0.0 && yr == (k = (int) yr) && abs(k) <= 65536)Z = R_cpow_n(X, k);else#ifdef HAVE_CPOWZ = cpow(X, Y);#else{/* Used for FreeBSD and MingGW, hence mainly with gcc */double rho, r, i, theta;r = hypot(creal(X), cimag(X));i = atan2(cimag(X), creal(X));theta = i * yr;if (yi == 0.0)rho = pow(r, yr);else {/* rearrangement of cexp(X * clog(Y)) */r = log(r);theta += r * yi;rho = exp(r * yr - i * yi);}#ifdef __GNUC____real__ Z = rho * cos(theta);__imag__ Z = rho * sin(theta);#elseZ = rho * cos(theta) + (rho * sin(theta)) * I;#endif}#endifreturn Z;}/* See arithmetic.c */#define mod_iterate(n1,n2,i1,i2) for (i=i1=i2=0; i<n; \i1 = (++i1 == n1) ? 0 : i1,\i2 = (++i2 == n2) ? 0 : i2,\++i)SEXP attribute_hidden complex_binary(ARITHOP_TYPE code, SEXP s1, SEXP s2){int i,i1, i2, n, n1, n2;SEXP ans;/* Note: "s1" and "s2" are protected in the calling code. */n1 = LENGTH(s1);n2 = LENGTH(s2);/* S4-compatibility change: if n1 or n2 is 0, result is of length 0 */if (n1 == 0 || n2 == 0) return(allocVector(CPLXSXP, 0));n = (n1 > n2) ? n1 : n2;ans = allocVector(CPLXSXP, n);switch (code) {case PLUSOP:mod_iterate(n1, n2, i1, i2) {Rcomplex x1 = COMPLEX(s1)[i1], x2 = COMPLEX(s2)[i2];COMPLEX(ans)[i].r = x1.r + x2.r;COMPLEX(ans)[i].i = x1.i + x2.i;}break;case MINUSOP:mod_iterate(n1, n2, i1, i2) {Rcomplex x1 = COMPLEX(s1)[i1], x2 = COMPLEX(s2)[i2];COMPLEX(ans)[i].r = x1.r - x2.r;COMPLEX(ans)[i].i = x1.i - x2.i;}break;case TIMESOP:mod_iterate(n1, n2, i1, i2) {SET_C99_COMPLEX(COMPLEX(ans), i,C99_COMPLEX2(s1, i1) * C99_COMPLEX2(s2, i2));}break;case DIVOP:mod_iterate(n1, n2, i1, i2) {SET_C99_COMPLEX(COMPLEX(ans), i,C99_COMPLEX2(s1, i1) / C99_COMPLEX2(s2, i2));}break;case POWOP:mod_iterate(n1, n2, i1, i2) {SET_C99_COMPLEX(COMPLEX(ans), i,mycpow(C99_COMPLEX2(s1, i1), C99_COMPLEX2(s2, i2)));}break;default:error(_("unimplemented complex operation"));}/* quick return if there are no attributes */if (ATTRIB(s1) == R_NilValue && ATTRIB(s2) == R_NilValue)return ans;/* Copy attributes from longer argument. */if (n1 > n2)copyMostAttrib(s1, ans);else if (n1 == n2) {copyMostAttrib(s2, ans);copyMostAttrib(s1, ans);} elsecopyMostAttrib(s2, ans);return ans;}SEXP attribute_hidden do_cmathfuns(SEXP call, SEXP op, SEXP args, SEXP env){SEXP x, y = R_NilValue; /* -Wall*/int i, n;checkArity(op, args);check1arg(args, call, "z");if (DispatchGroup("Complex", call, op, args, env, &x))return x;x = CAR(args);n = length(x);if (isComplex(x)) {switch(PRIMVAL(op)) {case 1: /* Re */y = allocVector(REALSXP, n);for(i = 0 ; i < n ; i++)REAL(y)[i] = COMPLEX(x)[i].r;break;case 2: /* Im */y = allocVector(REALSXP, n);for(i = 0 ; i < n ; i++)REAL(y)[i] = COMPLEX(x)[i].i;break;case 3: /* Mod */case 6: /* abs */y = allocVector(REALSXP, n);for(i = 0 ; i < n ; i++)#if HAVE_CABSREAL(y)[i] = cabs(C99_COMPLEX2(x, i));#elseREAL(y)[i] = hypot(COMPLEX(x)[i].r, COMPLEX(x)[i].i);#endifbreak;case 4: /* Arg */y = allocVector(REALSXP, n);for(i = 0 ; i < n ; i++)#if HAVE_CARGREAL(y)[i] = carg(C99_COMPLEX2(x, i));#elseREAL(y)[i] = atan2(COMPLEX(x)[i].i, COMPLEX(x)[i].r);#endifbreak;case 5: /* Conj */y = allocVector(CPLXSXP, n);for(i = 0 ; i < n ; i++) {COMPLEX(y)[i].r = COMPLEX(x)[i].r;COMPLEX(y)[i].i = -COMPLEX(x)[i].i;}break;}}else if(isNumeric(x)) { /* so no complex numbers involved */if(isReal(x)) PROTECT(x);else PROTECT(x = coerceVector(x, REALSXP));switch(PRIMVAL(op)) {case 1: /* Re */case 5: /* Conj */y = allocVector(REALSXP, n);for(i = 0 ; i < n ; i++)REAL(y)[i] = REAL(x)[i];break;case 2: /* Im */y = allocVector(REALSXP, n);for(i = 0 ; i < n ; i++)REAL(y)[i] = 0.0;break;case 4: /* Arg */y = allocVector(REALSXP, n);for(i = 0 ; i < n ; i++)if(ISNAN(REAL(x)[i]))REAL(y)[i] = REAL(x)[i];else if (REAL(x)[i] >= 0)REAL(y)[i] = 0;elseREAL(y)[i] = M_PI;break;case 3: /* Mod */case 6: /* abs */y = allocVector(REALSXP, n);for(i = 0 ; i < n ; i++)REAL(y)[i] = fabs(REAL(x)[i]);break;}UNPROTECT(1);}else errorcall(call, _("non-numeric argument to function"));PROTECT(x);PROTECT(y);DUPLICATE_ATTRIB(y, x);UNPROTECT(2);return y;}/* used in format.c and printutils.c */#define MAX_DIGITS 22void attribute_hidden z_prec_r(Rcomplex *r, Rcomplex *x, double digits){double m = 0.0, m1, m2;int dig, mag;r->r = x->r; r->i = x->i;m1 = fabs(x->r); m2 = fabs(x->i);if(R_FINITE(m1)) m = m1;if(R_FINITE(m2) && m2 > m) m = m2;if (m == 0.0) return;if (!R_FINITE(digits)) {if(digits > 0) return; else {r->r = r->i = 0.0; return ;}}dig = (int)floor(digits+0.5);if (dig > MAX_DIGITS) return; else if (dig < 1) dig = 1;mag = (int)floor(log10(m));dig = dig - mag - 1;if (dig > 306) {double pow10 = 1.0e4;digits = (double)(dig - 4);r->r = fround(pow10 * x->r, digits)/pow10;r->i = fround(pow10 * x->i, digits)/pow10;} else {digits = (double)(dig);r->r = fround(x->r, digits);r->i = fround(x->i, digits);}}/* These substitute functions are rarely used, and not extensivelytested, e.g. over CRAN. Please do not change without very goodreason!Currently (Feb 2011) they are used on FreeBSD.*/#ifndef HAVE_CLOG#define clog R_clog/* FIXME: maybe add full IEC60559 support */static double complex clog(double complex x){double xr = creal(x), xi = cimag(x);return log(hypot(xr, xi)) + atan2(xi, xr)*I;}#endif#ifndef HAVE_CSQRT#define csqrt R_csqrt/* FreeBSD does have this one */static double complex csqrt(double complex x){return mycpow(x, 0.5+0.0*I);}#endif#ifndef HAVE_CEXP#define cexp R_cexp/* FIXME: check/add full IEC60559 support */static double complex cexp(double complex x){double expx = exp(creal(x)), y = cimag(x);return expx * cos(y) + (expx * sin(y)) * I;}#endif#ifndef HAVE_CCOS#define ccos R_ccosstatic double complex ccos(double complex x){double xr = creal(x), xi = cimag(x);return cos(xr)*cosh(xi) - sin(xr)*sinh(xi)*I; /* A&S 4.3.56 */}#endif#ifndef HAVE_CSIN#define csin R_csinstatic double complex csin(double complex x){double xr = creal(x), xi = cimag(x);return sin(xr)*cosh(xi) + cos(xr)*sinh(xi)*I; /* A&S 4.3.55 */}#endif#ifndef HAVE_CTAN#define ctan R_ctanstatic double complex ctan(double complex z){/* A&S 4.3.57 */double x2, y2, den, ri;x2 = 2.0 * creal(z);y2 = 2.0 * cimag(z);den = cos(x2) + cosh(y2);/* any threshold between -log(DBL_EPSILON) and log(DBL_XMAX) will do*/if (ISNAN(y2) || fabs(y2) < 50.0) ri = sinh(y2)/den;else ri = (y2 < 0 ? -1.0 : 1.0);return sin(x2)/den + ri * I;}#endif#ifndef HAVE_CASIN#define casin R_casinstatic double complex casin(double complex z){/* A&S 4.4.37 */double alpha, t1, t2, x = creal(z), y = cimag(z), ri;t1 = 0.5 * hypot(x + 1, y);t2 = 0.5 * hypot(x - 1, y);alpha = t1 + t2;ri = log(alpha + sqrt(alpha*alpha - 1));/* This comes from'z_asin() is continuous from below if x >= 1and continuous from above if x <= -1.'*/if(y < 0 || (y == 0 && x > 1)) ri *= -1;return asin(t1 - t2) + ri*I;}#endif#ifndef HAVE_CACOS#define cacos R_cacosstatic double complex cacos(double complex z){return M_PI_2 - casin(z);}#endif#ifndef HAVE_CATAN#define catan R_catanstatic double complex catan(double complex z){double x = creal(z), y = cimag(z), rr, ri;rr = 0.5 * atan2(2 * x, (1 - x * x - y * y));ri = 0.25 * log((x * x + (y + 1) * (y + 1)) /(x * x + (y - 1) * (y - 1)));return rr + ri*I;}#endif#ifndef HAVE_CCOSH#define ccosh R_ccoshstatic double complex ccosh(double complex z){return ccos(z * I); /* A&S 4.5.8 */}#endif#ifndef HAVE_CSINH#define csinh R_csinhstatic double complex csinh(double complex z){return -I * csin(z * I); /* A&S 4.5.7 */}#endif#ifndef HAVE_CTANH#define ctanh R_ctanhstatic double complex ctanh(double complex z){return -I * ctan(z * I); /* A&S 4.5.9 */}#endifstatic double complex z_tan(double complex z){double y = cimag(z);double complex r = ctan(z);if(R_FINITE(y) && fabs(y) > 25.0) {/* at this point the real part is nearly zero, and theimaginary part is one: but some OSes get the imag as NaN */#if __GNUC____imag__ r = y < 0 ? -1.0 : 1.0;#elser = creal(r) + (y < 0 ? -1.0 : 1.0) * I;#endif}return r;}/* Don't rely on the OS at the branch cuts */static double complex z_asin(double complex z){if(cimag(z) == 0 && fabs(creal(z)) > 1) {double alpha, t1, t2, x = creal(z), ri;t1 = 0.5 * fabs(x + 1);t2 = 0.5 * fabs(x - 1);alpha = t1 + t2;ri = log(alpha + sqrt(alpha*alpha - 1));if(x > 1) ri *= -1;return asin(t1 - t2) + ri*I;}return casin(z);}static double complex z_acos(double complex z){if(cimag(z) == 0 && fabs(creal(z)) > 1) return M_PI_2 - z_asin(z);return cacos(z);}static double complex z_atan(double complex z){if(creal(z) == 0 && fabs(cimag(z)) > 1) {double y = cimag(z), rr, ri;rr = (y > 0) ? M_PI_2 : -M_PI_2;ri = 0.25 * log(((y + 1) * (y + 1))/((y - 1) * (y - 1)));return rr + ri*I;}return catan(z);}static double complex z_acosh(double complex z){return z_acos(z) * I;}static double complex z_asinh(double complex z){return -I * z_asin(z * I);}static double complex z_atanh(double complex z){return -I * z_atan(z * I);}static Rboolean cmath1(double complex (*f)(double complex),Rcomplex *x, Rcomplex *y, int n){int i;Rboolean naflag = FALSE;for (i = 0 ; i < n ; i++) {if (ISNA(x[i].r) || ISNA(x[i].i)) {y[i].r = NA_REAL; y[i].i = NA_REAL;} else {SET_C99_COMPLEX(y, i, f(toC99(x + i)));if ( (ISNAN(y[i].r) || ISNAN(y[i].i)) &&!(ISNAN(x[i].r) || ISNAN(x[i].i)) ) naflag = TRUE;}}return naflag;}SEXP attribute_hidden complex_math1(SEXP call, SEXP op, SEXP args, SEXP env){SEXP x, y;int n;Rboolean naflag = FALSE;PROTECT(x = CAR(args));n = length(x);PROTECT(y = allocVector(CPLXSXP, n));switch (PRIMVAL(op)) {case 10003: naflag = cmath1(clog, COMPLEX(x), COMPLEX(y), n); break;case 3: naflag = cmath1(csqrt, COMPLEX(x), COMPLEX(y), n); break;case 10: naflag = cmath1(cexp, COMPLEX(x), COMPLEX(y), n); break;case 20: naflag = cmath1(ccos, COMPLEX(x), COMPLEX(y), n); break;case 21: naflag = cmath1(csin, COMPLEX(x), COMPLEX(y), n); break;case 22: naflag = cmath1(z_tan, COMPLEX(x), COMPLEX(y), n); break;case 23: naflag = cmath1(z_acos, COMPLEX(x), COMPLEX(y), n); break;case 24: naflag = cmath1(z_asin, COMPLEX(x), COMPLEX(y), n); break;case 25: naflag = cmath1(z_atan, COMPLEX(x), COMPLEX(y), n); break;case 30: naflag = cmath1(ccosh, COMPLEX(x), COMPLEX(y), n); break;case 31: naflag = cmath1(csinh, COMPLEX(x), COMPLEX(y), n); break;case 32: naflag = cmath1(ctanh, COMPLEX(x), COMPLEX(y), n); break;case 33: naflag = cmath1(z_acosh, COMPLEX(x), COMPLEX(y), n); break;case 34: naflag = cmath1(z_asinh, COMPLEX(x), COMPLEX(y), n); break;case 35: naflag = cmath1(z_atanh, COMPLEX(x), COMPLEX(y), n); break;default:/* such as sign, gamma */errorcall(call, _("unimplemented complex function"));}if (naflag)warningcall(call, "NaNs produced in function \"%s\"", PRIMNAME(op));DUPLICATE_ATTRIB(y, x);UNPROTECT(2);return y;}static void z_rround(Rcomplex *r, Rcomplex *x, Rcomplex *p){r->r = fround(x->r, p->r);r->i = fround(x->i, p->r);}static void z_prec(Rcomplex *r, Rcomplex *x, Rcomplex *p){z_prec_r(r, x, p->r);}static void z_logbase(Rcomplex *r, Rcomplex *z, Rcomplex *base){double complex dz = toC99(z), dbase = toC99(base);SET_C99_COMPLEX(r, 0, clog(dz)/clog(dbase));}static void z_atan2(Rcomplex *r, Rcomplex *csn, Rcomplex *ccs){double complex dr, dcsn = toC99(csn), dccs = toC99(ccs);if (dccs == 0) {if(dcsn == 0) {r->r = NA_REAL; r->i = NA_REAL; /* Why not R_NaN? */return;} else {double y = creal(dcsn);if (ISNAN(y)) dr = y;else dr = ((y >= 0) ? M_PI_2 : -M_PI_2);}} else {dr = catan(dcsn / dccs);if(creal(dccs) < 0) dr += M_PI;if(creal(dr) > M_PI) dr -= 2 * M_PI;}SET_C99_COMPLEX(r, 0, dr);}/* Complex Functions of Two Arguments */typedef void (*cm2_fun)(Rcomplex *, Rcomplex *, Rcomplex *);SEXP attribute_hidden complex_math2(SEXP call, SEXP op, SEXP args, SEXP env){int i, n, na, nb;Rcomplex ai, bi, *a, *b, *y;SEXP sa, sb, sy;Rboolean naflag = FALSE;cm2_fun f;switch (PRIMVAL(op)) {case 0: /* atan2 */f = z_atan2; break;case 10001: /* round */f = z_rround; break;case 2: /* passed from do_log1arg */case 10:case 10003: /* passed from do_log */f = z_logbase; break;case 10004: /* signif */f = z_prec; break;default:errorcall_return(call, _("unimplemented complex function"));}PROTECT(sa = coerceVector(CAR(args), CPLXSXP));PROTECT(sb = coerceVector(CADR(args), CPLXSXP));na = length(sa); nb = length(sb);if ((na == 0) || (nb == 0)) return(allocVector(CPLXSXP, 0));n = (na < nb) ? nb : na;PROTECT(sy = allocVector(CPLXSXP, n));a = COMPLEX(sa); b = COMPLEX(sb); y = COMPLEX(sy);for (i = 0; i < n; i++) {ai = a[i % na]; bi = b[i % nb];if(ISNA(ai.r) && ISNA(ai.i) &&ISNA(bi.r) && ISNA(bi.i)) {y[i].r = NA_REAL; y[i].i = NA_REAL;} else {f(&y[i], &ai, &bi);if ( (ISNAN(y[i].r) || ISNAN(y[i].i)) &&!(ISNAN(ai.r) || ISNAN(ai.i) || ISNAN(bi.r) || ISNAN(bi.i)) )naflag = TRUE;}}if (naflag)warningcall(call, "NaNs produced in function \"%s\"", PRIMNAME(op));if(n == na) {DUPLICATE_ATTRIB(sy, sa);} else if(n == nb) {DUPLICATE_ATTRIB(sy, sb);}UNPROTECT(3);return sy;}SEXP attribute_hidden do_complex(SEXP call, SEXP op, SEXP args, SEXP rho){/* complex(length, real, imaginary) */SEXP ans, re, im;int i, na, nr, ni;na = asInteger(CAR(args));if(na == NA_INTEGER || na < 0)error(_("invalid length"));PROTECT(re = coerceVector(CADR(args), REALSXP));PROTECT(im = coerceVector(CADDR(args), REALSXP));nr = length(re);ni = length(im);/* is always true: if (na >= 0) {*/na = (nr > na) ? nr : na;na = (ni > na) ? ni : na;/* }*/ans = allocVector(CPLXSXP, na);for(i=0 ; i<na ; i++) {COMPLEX(ans)[i].r = 0;COMPLEX(ans)[i].i = 0;}UNPROTECT(2);if(na > 0 && nr > 0) {for(i=0 ; i<na ; i++)COMPLEX(ans)[i].r = REAL(re)[i%nr];}if(na > 0 && ni > 0) {for(i=0 ; i<na ; i++)COMPLEX(ans)[i].i = REAL(im)[i%ni];}return ans;}SEXP attribute_hidden do_polyroot(SEXP call, SEXP op, SEXP args, SEXP rho){SEXP z, zr, zi, r, rr, ri;Rboolean fail;int degree, i, n;checkArity(op, args);z = CAR(args);switch(TYPEOF(z)) {case CPLXSXP:PROTECT(z);break;case REALSXP:case INTSXP:case LGLSXP:PROTECT(z = coerceVector(z, CPLXSXP));break;default:UNIMPLEMENTED_TYPE("polyroot", z);}n = length(z);degree = 0;for(i = 0; i < n; i++) {if(COMPLEX(z)[i].r!= 0.0 || COMPLEX(z)[i].i != 0.0) degree = i;}n = degree + 1; /* omit trailing zeroes */if(degree >= 1) {PROTECT(rr = allocVector(REALSXP, n));PROTECT(ri = allocVector(REALSXP, n));PROTECT(zr = allocVector(REALSXP, n));PROTECT(zi = allocVector(REALSXP, n));for(i=0 ; i<n ; i++) {if(!R_FINITE(COMPLEX(z)[i].r) || !R_FINITE(COMPLEX(z)[i].i))error(_("invalid polynomial coefficient"));REAL(zr)[degree-i] = COMPLEX(z)[i].r;REAL(zi)[degree-i] = COMPLEX(z)[i].i;}R_cpolyroot(REAL(zr), REAL(zi), °ree, REAL(rr), REAL(ri), &fail);if(fail) error(_("root finding code failed"));UNPROTECT(2);r = allocVector(CPLXSXP, degree);for(i=0 ; i<degree ; i++) {COMPLEX(r)[i].r = REAL(rr)[i];COMPLEX(r)[i].i = REAL(ri)[i];}UNPROTECT(3);}else {UNPROTECT(1);r = allocVector(CPLXSXP, 0);}return r;}