comparison libinterp/octave-value/ov-flt-re-mat.cc @ 21231:5f318c8ec634

eliminate feature tests from lo-specfun.h * lo-specfun.h, lo-specfun.cc (xacosh, xasinh, xatanh, xerf, xerfc xexpm1, xlog1p, xcbrt): Rename to have 'x' prefix. Conditionally define in .cc file. Change all uses Move complex versions of acosh, asinh, and atanh functions here.
author John W. Eaton <jwe@octave.org>
date Tue, 09 Feb 2016 04:15:50 -0500
parents 2cf8bc5c7017
children 40de9f8f23a6
comparison
equal deleted inserted replaced
21230:721539013db4 21231:5f318c8ec634
741 RC_ARRAY_MAPPER (acos, FloatComplex, rc_acos); 741 RC_ARRAY_MAPPER (acos, FloatComplex, rc_acos);
742 RC_ARRAY_MAPPER (acosh, FloatComplex, rc_acosh); 742 RC_ARRAY_MAPPER (acosh, FloatComplex, rc_acosh);
743 ARRAY_MAPPER (angle, float, ::arg); 743 ARRAY_MAPPER (angle, float, ::arg);
744 ARRAY_MAPPER (arg, float, ::arg); 744 ARRAY_MAPPER (arg, float, ::arg);
745 RC_ARRAY_MAPPER (asin, FloatComplex, rc_asin); 745 RC_ARRAY_MAPPER (asin, FloatComplex, rc_asin);
746 ARRAY_MAPPER (asinh, float, ::asinhf); 746 ARRAY_MAPPER (asinh, float, xasinh);
747 ARRAY_MAPPER (atan, float, ::atanf); 747 ARRAY_MAPPER (atan, float, ::atanf);
748 RC_ARRAY_MAPPER (atanh, FloatComplex, rc_atanh); 748 RC_ARRAY_MAPPER (atanh, FloatComplex, rc_atanh);
749 ARRAY_MAPPER (erf, float, ::erff); 749 ARRAY_MAPPER (erf, float, xerf);
750 ARRAY_MAPPER (erfinv, float, ::erfinv); 750 ARRAY_MAPPER (erfinv, float, ::erfinv);
751 ARRAY_MAPPER (erfcinv, float, ::erfcinv); 751 ARRAY_MAPPER (erfcinv, float, ::erfcinv);
752 ARRAY_MAPPER (erfc, float, ::erfcf); 752 ARRAY_MAPPER (erfc, float, xerfc);
753 ARRAY_MAPPER (erfcx, float, ::erfcx); 753 ARRAY_MAPPER (erfcx, float, ::erfcx);
754 ARRAY_MAPPER (erfi, float, ::erfi); 754 ARRAY_MAPPER (erfi, float, ::erfi);
755 ARRAY_MAPPER (dawson, float, ::dawson); 755 ARRAY_MAPPER (dawson, float, ::dawson);
756 ARRAY_MAPPER (gamma, float, xgamma); 756 ARRAY_MAPPER (gamma, float, xgamma);
757 RC_ARRAY_MAPPER (lgamma, FloatComplex, rc_lgamma); 757 RC_ARRAY_MAPPER (lgamma, FloatComplex, rc_lgamma);
758 ARRAY_MAPPER (cbrt, float, ::cbrtf); 758 ARRAY_MAPPER (cbrt, float, xcbrt);
759 ARRAY_MAPPER (ceil, float, ::ceilf); 759 ARRAY_MAPPER (ceil, float, ::ceilf);
760 ARRAY_MAPPER (cos, float, ::cosf); 760 ARRAY_MAPPER (cos, float, ::cosf);
761 ARRAY_MAPPER (cosh, float, ::coshf); 761 ARRAY_MAPPER (cosh, float, ::coshf);
762 ARRAY_MAPPER (exp, float, ::expf); 762 ARRAY_MAPPER (exp, float, ::expf);
763 ARRAY_MAPPER (expm1, float, ::expm1f); 763 ARRAY_MAPPER (expm1, float, xexpm1);
764 ARRAY_MAPPER (fix, float, ::fix); 764 ARRAY_MAPPER (fix, float, ::fix);
765 ARRAY_MAPPER (floor, float, ::floorf); 765 ARRAY_MAPPER (floor, float, ::floorf);
766 RC_ARRAY_MAPPER (log, FloatComplex, rc_log); 766 RC_ARRAY_MAPPER (log, FloatComplex, rc_log);
767 RC_ARRAY_MAPPER (log2, FloatComplex, rc_log2); 767 RC_ARRAY_MAPPER (log2, FloatComplex, rc_log2);
768 RC_ARRAY_MAPPER (log10, FloatComplex, rc_log10); 768 RC_ARRAY_MAPPER (log10, FloatComplex, rc_log10);