/* * Copyright (c) 1999 * Silicon Graphics Computer Systems, Inc. * * Copyright (c) 1999 * Boris Fomitchev * * This material is provided "as is", with absolutely no warranty expressed * or implied. Any use is at your own risk. * * Permission to use or copy this software for any purpose is hereby granted * without fee, provided the above notices are retained on all copies. * Permission to modify the code and to distribute modified code is granted, * provided the above notices are retained, and a notice that the code was * modified is included with the above copyright notice. * */ #ifndef __sgi_internal_complex_h #define __sgi_internal_complex_h // This header declares the template class complex, as described in // in the draft C++ standard. Single-precision complex numbers // are complex, double-precision are complex, and // quad precision are complex. // Note that the template class complex is declared within namespace // std, as called for by the draft C++ standard. #if !(defined(__MRC__)||defined(__SC__)) //*TY 05/01/2000 - added workaround for mpw #include #else //*TY 05/01/2000 - #include //*TY 05/01/2000 - mpw confuse on the using declarations for the math functions # define __STL_DO_ABS(_Tp) ::fabs # define __STL_DO_ACOS(_Tp) ::acos # define __STL_DO_ASIN(_Tp) ::asin # define __STL_DO_ATAN(_Tp) ::atan # define __STL_DO_ATAN2(_Tp) ::atan2 # define __STL_DO_COS(_Tp) ::cos # define __STL_DO_COSH(_Tp) ::cosh # define __STL_DO_LOG(_Tp) ::log # define __STL_DO_LOG10(_Tp) ::log10 # define __STL_DO_POW(_Tp) ::pow # define __STL_DO_SIN(_Tp) ::sin # define __STL_DO_SINH(_Tp) ::sinh # define __STL_DO_SQRT(_Tp) ::sqrt # define __STL_DO_TAN(_Tp) ::tan # define __STL_DO_TANH(_Tp) ::tanh # define __STL_DO_EXP(_Tp) ::exp # define __STL_DO_HYPOT(_Tp) ::hypot #endif //*TY 05/01/2000 - // #include #include #include __STL_BEGIN_NAMESPACE #if !defined(__STL_NO_COMPLEX_SPECIALIZATIONS) //*TY 02/25/2000 - added for MPW compiler workaround template struct complex; __STL_TEMPLATE_NULL struct __STL_CLASS_DECLSPEC complex; __STL_TEMPLATE_NULL struct __STL_CLASS_DECLSPEC complex; __STL_TEMPLATE_NULL struct __STL_CLASS_DECLSPEC complex; # endif template struct complex { typedef _Tp value_type; typedef complex<_Tp> _Self; // Constructors, destructor, assignment operator. complex() : _M_re(0), _M_im(0) {} complex(const value_type& __x) : _M_re(__x), _M_im(0) {} complex(const value_type& __x, const value_type& __y) : _M_re(__x), _M_im(__y) {} complex(const _Self& __z) : _M_re(__z._M_re), _M_im(__z._M_im) {} _Self& operator=(const _Self& __z) { _M_re = __z._M_re; _M_im = __z._M_im; return *this; } #if defined (__STL_MEMBER_TEMPLATES) && ( defined (__STL_FUNCTION_TMPL_PARTIAL_ORDER) || defined(__STL_NO_COMPLEX_SPECIALIZATIONS)) template explicit complex(const complex<_Tp2>& __z) : _M_re(__z._M_re), _M_im(__z._M_im) {} template _Self& operator=(const complex<_Tp2>& __z) { _M_re = __z._M_re; _M_im = __z._M_im; return *this; } #endif /* __STL_MEMBER_TEMPLATES */ // Element access. value_type real() const { return _M_re; } value_type imag() const { return _M_im; } // Arithmetic op= operations involving one real argument. _Self& operator= (const value_type& __x) { _M_re = __x; _M_im = 0; return *this; } _Self& operator+= (const value_type& __x) { _M_re += __x; return *this; } _Self& operator-= (const value_type& __x) { _M_re -= __x; return *this; } _Self& operator*= (const value_type& __x) { _M_re *= __x; _M_im *= __x; return *this; } _Self& operator/= (const value_type& __x) { _M_re /= __x; _M_im /= __x; return *this; } // Arithmetic op= operations involving two complex arguments. static void __STL_CALL _div(const value_type& __z1_r, const value_type& __z1_i, const value_type& __z2_r, const value_type& __z2_i, value_type& __res_r, value_type& __res_i); static void __STL_CALL _div(const value_type& __z1_r, const value_type& __z2_r, const value_type& __z2_i, value_type& __res_r, value_type& __res_i); #if defined ( __STL_MEMBER_TEMPLATES ) // && defined (__STL_FUNCTION_TMPL_PARTIAL_ORDER) template _Self& operator+= (const complex<_Tp2>& __z) { _M_re += __z._M_re; _M_im += __z._M_im; return *this; } template _Self& operator-= (const complex<_Tp2>& __z) { _M_re -= __z._M_re; _M_im -= __z._M_im; return *this; } template _Self& operator*= (const complex<_Tp2>& __z) { value_type __r = _M_re * __z._M_re - _M_im * __z._M_im; value_type __i = _M_re * __z._M_im + _M_im * __z._M_re; _M_re = __r; _M_im = __i; return *this; } template _Self& operator/= (const complex<_Tp2>& __z) { value_type __r; value_type __i; _div(_M_re, _M_im, __z._M_re, __z._M_im, __r, __i); _M_re = __r; _M_im = __i; return *this; } #endif /* __STL_MEMBER_TEMPLATES */ _Self& operator+= (const _Self& __z) { _M_re += __z._M_re; _M_im += __z._M_im; return *this; } _Self& operator-= (const _Self& __z) { _M_re -= __z._M_re; _M_im -= __z._M_im; return *this; } _Self& operator*= (const _Self& __z) { value_type __r = _M_re * __z._M_re - _M_im * __z._M_im; value_type __i = _M_re * __z._M_im + _M_im * __z._M_re; _M_re = __r; _M_im = __i; return *this; } _Self& operator/= (const _Self& __z) { value_type __r; value_type __i; _div(_M_re, _M_im, __z._M_re, __z._M_im, __r, __i); _M_re = __r; _M_im = __i; return *this; } // Data members. value_type _M_re; value_type _M_im; }; #if !defined(__STL_NO_COMPLEX_SPECIALIZATIONS) //*TY 02/25/2000 - added for MPW compiler workaround // Explicit specializations for float, double, long double. The only // reason for these specializations is to enable automatic conversions // from complex to complex, and complex to // complex. __STL_TEMPLATE_NULL struct __STL_CLASS_DECLSPEC complex { typedef float value_type; typedef complex _Self; # if 0 // Constructors, destructor, assignment operator. complex() : _M_re(0), _M_im(0) {} complex(value_type __x) : _M_re(__x), _M_im(0) {} # endif complex(const value_type& __x = 0.0, const value_type& __y = 0.0) : _M_re(__x), _M_im(__y) {} complex(const complex& __z) : _M_re(__z._M_re), _M_im(__z._M_im) {} explicit inline complex(const complex& __z); explicit inline complex(const complex& __z); // Element access. value_type real() const { return _M_re; } value_type imag() const { return _M_im; } // Arithmetic op= operations involving one real argument. _Self& operator= (const value_type& __x) { _M_re = __x; _M_im = 0; return *this; } _Self& operator+= (const value_type& __x) { _M_re += __x; return *this; } _Self& operator-= (const value_type& __x) { _M_re -= __x; return *this; } _Self& operator*= (const value_type& __x) { _M_re *= __x; _M_im *= __x; return *this; } _Self& operator/= (const value_type& __x) { _M_re /= __x; _M_im /= __x; return *this; } // Arithmetic op= operations involving two complex arguments. static void __STL_CALL _div(const float& __z1_r, const float& __z1_i, const float& __z2_r, const float& __z2_i, float& __res_r, float& __res_i); static void __STL_CALL _div(const float& __z1_r, const float& __z2_r, const float& __z2_i, float& __res_r, float& __res_i); #if defined (__STL_MEMBER_TEMPLATES) // && defined (__STL_FUNCTION_TMPL_PARTIAL_ORDER) template complex& operator=(const complex<_Tp2>& __z) { _M_re = __z._M_re; _M_im = __z._M_im; return *this; } template complex& operator+= (const complex<_Tp2>& __z) { _M_re += __z._M_re; _M_im += __z._M_im; return *this; } template complex& operator-= (const complex<_Tp2>& __z) { _M_re -= __z._M_re; _M_im -= __z._M_im; return *this; } template complex& operator*= (const complex<_Tp2>& __z) { float __r = _M_re * __z._M_re - _M_im * __z._M_im; float __i = _M_re * __z._M_im + _M_im * __z._M_re; _M_re = __r; _M_im = __i; return *this; } template complex& operator/= (const complex<_Tp2>& __z) { float __r; float __i; _div(_M_re, _M_im, __z._M_re, __z._M_im, __r, __i); _M_re = __r; _M_im = __i; return *this; } #endif /* __STL_MEMBER_TEMPLATES */ _Self& operator=(const _Self& __z) { _M_re = __z._M_re; _M_im = __z._M_im; return *this; } _Self& operator+= (const _Self& __z) { _M_re += __z._M_re; _M_im += __z._M_im; return *this; } _Self& operator-= (const _Self& __z) { _M_re -= __z._M_re; _M_im -= __z._M_im; return *this; } _Self& operator*= (const _Self& __z) { value_type __r = _M_re * __z._M_re - _M_im * __z._M_im; value_type __i = _M_re * __z._M_im + _M_im * __z._M_re; _M_re = __r; _M_im = __i; return *this; } _Self& operator/= (const _Self& __z) { value_type __r; value_type __i; _div(_M_re, _M_im, __z._M_re, __z._M_im, __r, __i); _M_re = __r; _M_im = __i; return *this; } // Data members. value_type _M_re; value_type _M_im; }; __STL_TEMPLATE_NULL struct __STL_CLASS_DECLSPEC complex { typedef double value_type; typedef complex _Self; # if 0 // Constructors, destructor, assignment operator. complex() : _M_re(0), _M_im(0) {} complex(value_type __x) : _M_re(__x), _M_im(0) {} # endif complex(const value_type& __x = 0.0, const value_type& __y = 0.0) : _M_re(__x), _M_im(__y) {} complex(const complex& __z) : _M_re(__z._M_re), _M_im(__z._M_im) {} inline complex(const complex& __z); explicit inline complex(const complex& __z); // Element access. value_type real() const { return _M_re; } value_type imag() const { return _M_im; } // Arithmetic op= operations involving one real argument. _Self& operator= (const value_type& __x) { _M_re = __x; _M_im = 0; return *this; } _Self& operator+= (const value_type& __x) { _M_re += __x; return *this; } _Self& operator-= (const value_type& __x) { _M_re -= __x; return *this; } _Self& operator*= (const value_type& __x) { _M_re *= __x; _M_im *= __x; return *this; } _Self& operator/= (const value_type& __x) { _M_re /= __x; _M_im /= __x; return *this; } // Arithmetic op= operations involving two complex arguments. static void __STL_CALL _div(const double& __z1_r, const double& __z1_i, const double& __z2_r, const double& __z2_i, double& __res_r, double& __res_i); static void __STL_CALL _div(const double& __z1_r, const double& __z2_r, const double& __z2_i, double& __res_r, double& __res_i); #if defined (__STL_MEMBER_TEMPLATES) && defined (__STL_FUNCTION_TMPL_PARTIAL_ORDER) template complex& operator=(const complex<_Tp2>& __z) { _M_re = __z._M_re; _M_im = __z._M_im; return *this; } template complex& operator+= (const complex<_Tp2>& __z) { _M_re += __z._M_re; _M_im += __z._M_im; return *this; } template complex& operator-= (const complex<_Tp2>& __z) { _M_re -= __z._M_re; _M_im -= __z._M_im; return *this; } template complex& operator*= (const complex<_Tp2>& __z) { double __r = _M_re * __z._M_re - _M_im * __z._M_im; double __i = _M_re * __z._M_im + _M_im * __z._M_re; _M_re = __r; _M_im = __i; return *this; } template complex& operator/= (const complex<_Tp2>& __z) { double __r; double __i; _div(_M_re, _M_im, __z._M_re, __z._M_im, __r, __i); _M_re = __r; _M_im = __i; return *this; } #endif /* __STL_MEMBER_TEMPLATES */ _Self& operator=(const _Self& __z) { _M_re = __z._M_re; _M_im = __z._M_im; return *this; } _Self& operator+= (const _Self& __z) { _M_re += __z._M_re; _M_im += __z._M_im; return *this; } _Self& operator-= (const _Self& __z) { _M_re -= __z._M_re; _M_im -= __z._M_im; return *this; } _Self& operator*= (const _Self& __z) { value_type __r = _M_re * __z._M_re - _M_im * __z._M_im; value_type __i = _M_re * __z._M_im + _M_im * __z._M_re; _M_re = __r; _M_im = __i; return *this; } _Self& operator/= (const _Self& __z) { value_type __r; value_type __i; _div(_M_re, _M_im, __z._M_re, __z._M_im, __r, __i); _M_re = __r; _M_im = __i; return *this; } // Data members. value_type _M_re; value_type _M_im; }; __STL_TEMPLATE_NULL struct __STL_CLASS_DECLSPEC complex { typedef long double value_type; typedef complex _Self; // Constructors, destructor, assignment operator. # if 0 complex() : _M_re(0), _M_im(0) {} complex(const value_type& __x) : _M_re(__x), _M_im(0) {} # endif complex(const value_type& __x = 0.0, const value_type& __y = 0.0) : _M_re(__x), _M_im(__y) {} complex(const complex& __z) : _M_re(__z._M_re), _M_im(__z._M_im) {} inline complex(const complex& __z); inline complex(const complex& __z); // Element access. value_type real() const { return _M_re; } value_type imag() const { return _M_im; } // Arithmetic op= operations involving one real argument. _Self& operator= (const value_type& __x) { _M_re = __x; _M_im = 0; return *this; } _Self& operator+= (const value_type& __x) { _M_re += __x; return *this; } _Self& operator-= (const value_type& __x) { _M_re -= __x; return *this; } _Self& operator*= (const value_type& __x) { _M_re *= __x; _M_im *= __x; return *this; } _Self& operator/= (const value_type& __x) { _M_re /= __x; _M_im /= __x; return *this; } // Arithmetic op= operations involving two complex arguments. static void __STL_CALL _div(const long double& __z1_r, const long double& __z1_i, const long double& __z2_r, const long double& __z2_i, long double& __res_r, long double& __res_i); static void __STL_CALL _div(const long double& __z1_r, const long double& __z2_r, const long double& __z2_i, long double& __res_r, long double& __res_i); #if defined (__STL_MEMBER_TEMPLATES) && defined (__STL_FUNCTION_TMPL_PARTIAL_ORDER) template complex& operator=(const complex<_Tp2>& __z) { _M_re = __z._M_re; _M_im = __z._M_im; return *this; } template complex& operator+= (const complex<_Tp2>& __z) { _M_re += __z._M_re; _M_im += __z._M_im; return *this; } template complex& operator-= (const complex<_Tp2>& __z) { _M_re -= __z._M_re; _M_im -= __z._M_im; return *this; } template complex& operator*= (const complex<_Tp2>& __z) { long double __r = _M_re * __z._M_re - _M_im * __z._M_im; long double __i = _M_re * __z._M_im + _M_im * __z._M_re; _M_re = __r; _M_im = __i; return *this; } template complex& operator/= (const complex<_Tp2>& __z) { long double __r; long double __i; _div(_M_re, _M_im, __z._M_re, __z._M_im, __r, __i); _M_re = __r; _M_im = __i; return *this; } #endif /* __STL_MEMBER_TEMPLATES */ _Self& operator=(const _Self& __z) { _M_re = __z._M_re; _M_im = __z._M_im; return *this; } _Self& operator+= (const _Self& __z) { _M_re += __z._M_re; _M_im += __z._M_im; return *this; } _Self& operator-= (const _Self& __z) { _M_re -= __z._M_re; _M_im -= __z._M_im; return *this; } _Self& operator*= (const _Self& __z) { value_type __r = _M_re * __z._M_re - _M_im * __z._M_im; value_type __i = _M_re * __z._M_im + _M_im * __z._M_re; _M_re = __r; _M_im = __i; return *this; } _Self& operator/= (const _Self& __z) { value_type __r; value_type __i; _div(_M_re, _M_im, __z._M_re, __z._M_im, __r, __i); _M_re = __r; _M_im = __i; return *this; } // Data members. value_type _M_re; value_type _M_im; }; // Converting constructors from one of these three specialized types // to another. inline complex::complex(const complex& __z) : _M_re(__z._M_re), _M_im(__z._M_im) {} inline complex::complex(const complex& __z) : _M_re(__z._M_re), _M_im(__z._M_im) {} inline complex::complex(const complex& __z) : _M_re(__z._M_re), _M_im(__z._M_im) {} inline complex::complex(const complex& __z) : _M_re(__z._M_re), _M_im(__z._M_im) {} inline complex::complex(const complex& __z) : _M_re(__z._M_re), _M_im(__z._M_im) {} inline complex::complex(const complex& __z) : _M_re(__z._M_re), _M_im(__z._M_im) {} # endif /* SPECIALIZATIONS */ __STL_END_NAMESPACE #if defined (__sgi) && !defined(__GNUC__) # define __STL_ABSF ::absf # define __STL_ABSL ::absl # define __STL_ATAN2F ::atan2f # define __STL_ATAN2L ::atan2l # define __STL_SINF ::sinf # define __STL_SINL ::sinl # define __STL_COSF ::cosf # define __STL_COSL ::cosl # define __STL_SQRTF ::sqrtf # define __STL_SQRTL ::sqrtl # define __STL_EXPF ::expf # define __STL_EXPL ::expl # define __STL_LOG10F ::log10f # define __STL_LOG10L ::log10l # define __STL_LOGF ::logf # define __STL_LOGL ::logl # define __STL_SINHF ::sinhf # define __STL_SINHL ::sinhl # define __STL_COSHF ::coshf # define __STL_COSHL ::coshl # define __STL_HYPOTF ::hypotf // # define __STL_HYPOT ::hypot # define __STL_HYPOTL ::hypotl #else # define __STL_ABSF (float)__STL_DO_ABS(double) # define __STL_ABSL (long double)__STL_DO_ABS(double) # define __STL_ATAN2F (float)__STL_DO_ATAN2(double) # define __STL_ATAN2L (long double)__STL_DO_ATAN2(double) # define __STL_SINF (float)__STL_DO_SIN(double) # define __STL_SINL (long double)__STL_DO_SIN(double) # define __STL_COSF (float)__STL_DO_COS(double) # define __STL_COSL (long double)__STL_DO_COS(double) # define __STL_SQRTF (float)__STL_DO_SQRT(double) # define __STL_SQRTL (long double)__STL_DO_SQRT(double) # define __STL_EXPF (float)__STL_DO_EXP(double) # define __STL_EXPL (long double)__STL_DO_EXP(double) # define __STL_LOG10F (float)__STL_DO_LOG10(double) # define __STL_LOG10L (long double)__STL_DO_LOG10(double) # define __STL_LOGF (float)__STL_DO_LOG(double) # define __STL_LOGL (long double)__STL_DO_LOG(double) # define __STL_SINHF (float)__STL_DO_SINH(double) # define __STL_SINHL (long double)__STL_DO_SINH(double) # define __STL_COSHF (float)__STL_DO_COSH(double) # define __STL_COSHL (long double)__STL_DO_COSH(double) # define __STL_HYPOTF (float)__STL_DO_HYPOT(double) # define __STL_HYPOTL (long double)__STL_DO_HYPOT(double) #endif # define __STL_ABS (double)__STL_DO_ABS(double) # define __STL_ATAN2 (double)__STL_DO_ATAN2(double) # define __STL_SIN (double)__STL_DO_SIN(double) # define __STL_COS (double)__STL_DO_COS(double) # define __STL_SQRT (double)__STL_DO_SQRT(double) # define __STL_EXP (double)__STL_DO_EXP(double) # define __STL_LOG10 (double)__STL_DO_LOG10(double) # define __STL_LOG (double)__STL_DO_LOG(double) # define __STL_SINH (double)__STL_DO_SINH(double) # define __STL_COSH (double)__STL_DO_COSH(double) # define __STL_HYPOT __STL_DO_HYPOT(double) __STL_BEGIN_NAMESPACE // Unary non-member arithmetic operators. template inline complex<_Tp> __STL_CALL operator+(const complex<_Tp>& __z) { return __z; } template inline complex<_Tp> __STL_CALL operator-(const complex<_Tp>& __z) { return complex<_Tp>(-__z._M_re, -__z._M_im); } // Non-member arithmetic operations involving one real argument. template inline complex<_Tp> __STL_CALL operator+(const _Tp& __x, const complex<_Tp>& __z) { return complex<_Tp>(__x + __z._M_re, __z._M_im); } template inline complex<_Tp> __STL_CALL operator+(const complex<_Tp>& __z, const _Tp& __x) { return complex<_Tp>(__z._M_re + __x, __z._M_im); } template inline complex<_Tp> __STL_CALL operator-(const _Tp& __x, const complex<_Tp>& __z) { return complex<_Tp>(__x - __z._M_re, -__z._M_im); } template inline complex<_Tp> __STL_CALL operator-(const complex<_Tp>& __z, const _Tp& __x) { return complex<_Tp>(__z._M_re - __x, __z._M_im); } template inline complex<_Tp> __STL_CALL operator*(const _Tp& __x, const complex<_Tp>& __z) { return complex<_Tp>(__x * __z._M_re, __x * __z._M_im); } template inline complex<_Tp> __STL_CALL operator*(const complex<_Tp>& __z, const _Tp& __x) { return complex<_Tp>(__z._M_re * __x, __z._M_im * __x); } template inline complex<_Tp> __STL_CALL operator/(const _Tp& __x, const complex<_Tp>& __z) { complex<_Tp> __result; complex<_Tp>::_div(__x, __z._M_re, __z._M_im, __result._M_re, __result._M_im); return __result; } template inline complex<_Tp> __STL_CALL operator/(const complex<_Tp>& __z, const _Tp& __x) { return complex<_Tp>(__z._M_re / __x, __z._M_im / __x); } // Non-member arithmetic operations involving two complex arguments template inline complex<_Tp> __STL_CALL operator+(const complex<_Tp>& __z1, const complex<_Tp>& __z2) { return complex<_Tp>(__z1._M_re + __z2._M_re, __z1._M_im + __z2._M_im); } template inline complex<_Tp> __STL_CALL operator-(const complex<_Tp>& __z1, const complex<_Tp>& __z2) { return complex<_Tp>(__z1._M_re - __z2._M_re, __z1._M_im - __z2._M_im); } template inline complex<_Tp> __STL_CALL operator*(const complex<_Tp>& __z1, const complex<_Tp>& __z2) { return complex<_Tp>(__z1._M_re * __z2._M_re - __z1._M_im * __z2._M_im, __z1._M_re * __z2._M_im + __z1._M_im * __z2._M_re); } template inline complex<_Tp> __STL_CALL operator/(const complex<_Tp>& __z1, const complex<_Tp>& __z2) { complex<_Tp> __result; complex<_Tp>::_div(__z1._M_re, __z1._M_im, __z2._M_re, __z2._M_im, __result._M_re, __result._M_im); return __result; } // Comparison operators. template inline bool __STL_CALL operator==(const complex<_Tp>& __z1, const complex<_Tp>& __z2) { return __z1._M_re == __z2._M_re && __z1._M_im == __z2._M_im; } template inline bool __STL_CALL operator==(const complex<_Tp>& __z, const _Tp& __x) { return __z._M_re == __x && __z._M_im == 0; } template inline bool __STL_CALL operator==(const _Tp& __x, const complex<_Tp>& __z) { return __x == __z._M_re && 0 == __z._M_im; } #ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDER template inline bool __STL_CALL operator!=(const complex<_Tp>& __z1, const complex<_Tp>& __z2) { return __z1._M_re != __z2._M_re || __z1._M_im != __z2._M_im; } #endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */ template inline bool __STL_CALL operator!=(const complex<_Tp>& __z, const _Tp& __x) { return __z._M_re != __x || __z._M_im != 0; } template inline bool __STL_CALL operator!=(const _Tp& __x, const complex<_Tp>& __z) { return __x != __z._M_re || 0 != __z._M_im; } // Other basic arithmetic operations template inline _Tp __STL_CALL real(const complex<_Tp>& __z) { return __z._M_re; } template inline _Tp __STL_CALL imag(const complex<_Tp>& __z) { return __z._M_im; } __STL_DECLSPEC float __STL_CALL abs(const complex&); __STL_DECLSPEC double __STL_CALL abs(const complex&); __STL_DECLSPEC float __STL_CALL arg(const complex&); __STL_DECLSPEC double __STL_CALL arg(const complex&); __STL_DECLSPEC complex __STL_CALL polar(const float& __rho, const float& __phi); __STL_DECLSPEC complex __STL_CALL polar(const double& __rho, const double& __phi); # ifdef __STL_LONG_DOUBLE __STL_DECLSPEC long double __STL_CALL arg(const complex&); __STL_DECLSPEC long double __STL_CALL abs(const complex&); __STL_DECLSPEC complex __STL_CALL polar(const long double&, const long double&); # endif template _Tp __STL_CALL abs(const complex<_Tp>& __z) { return _Tp(abs(complex(double(__z.real()), double(__z.imag())))); } template _Tp __STL_CALL arg(const complex<_Tp>& __z) { return _Tp(arg(complex(double(__z.real()), double(__z.imag())))); } template inline _Tp __STL_CALL norm(const complex<_Tp>& __z) { return __z._M_re * __z._M_re + __z._M_im * __z._M_im; } template inline complex<_Tp> __STL_CALL conj(const complex<_Tp>& __z) { return complex<_Tp>(__z._M_re, -__z._M_im); } template complex<_Tp> __STL_CALL polar(const _Tp& __rho) { return complex<_Tp>(__rho, 0); } template complex<_Tp> __STL_CALL polar(const _Tp& __rho, const _Tp& __phi) { complex __tmp = polar(double(__rho), double(__phi)); return complex<_Tp>(_Tp(__tmp.real()), _Tp(__tmp.imag())); } #ifdef __STL_USE_NEW_IOSTREAMS // Complex output, in the form (re,im). We use a two-step process // involving stringstream so that we get the padding right. template basic_ostream<_CharT, _Traits>& __STL_CALL operator<<(basic_ostream<_CharT, _Traits>& __os, const complex<_Tp>& __z); template basic_istream<_CharT, _Traits>& __STL_CALL operator>>(basic_istream<_CharT, _Traits>& __is, complex<_Tp>& __z); // Specializations for narrow characters; lets us avoid widen. #ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDER # define __STL_OPERATOR_TEMPLATE # else # define __STL_OPERATOR_TEMPLATE __STL_TEMPLATE_NULL #endif __STL_OPERATOR_TEMPLATE __STL_DECLSPEC basic_istream >& __STL_CALL operator>>(basic_istream >& __is, complex& __z); __STL_OPERATOR_TEMPLATE __STL_DECLSPEC basic_istream >& __STL_CALL operator>>(basic_istream >& __is, complex& __z); __STL_OPERATOR_TEMPLATE __STL_DECLSPEC basic_ostream >& __STL_CALL operator<<(basic_ostream >& __is, const complex& __z); __STL_OPERATOR_TEMPLATE __STL_DECLSPEC basic_ostream >& __STL_CALL operator<<(basic_ostream >& __is, const complex& __z); # ifdef __STL_LONG_DOUBLE __STL_OPERATOR_TEMPLATE __STL_DECLSPEC basic_ostream >& __STL_CALL operator>>(basic_istream >& __is, const complex& __z); __STL_OPERATOR_TEMPLATE __STL_DECLSPEC basic_istream >& __STL_CALL operator<<(basic_ostream >& __is, complex& __z); # endif # if defined (__STL_USE_TEMPLATE_EXPORT) && ! defined (__STL_NO_WCHAR_T) __STL_EXPORT_TEMPLATE basic_istream >& __STL_CALL operator>>( basic_istream >&, complex&); __STL_EXPORT_TEMPLATE basic_ostream >& __STL_CALL operator<<( basic_ostream >&, const complex&); __STL_EXPORT_TEMPLATE basic_istream >& __STL_CALL operator>>( basic_istream >&, complex&); __STL_EXPORT_TEMPLATE basic_ostream >& __STL_CALL operator<<( basic_ostream >&, const complex&); # ifdef __STL_LONG_DOUBLE __STL_EXPORT_TEMPLATE basic_istream >& __STL_CALL operator>>( basic_istream >&, complex&); __STL_EXPORT_TEMPLATE basic_ostream >& __STL_CALL operator<<( basic_ostream >&, const complex&); # endif # endif /* USE_TEMPLATE_EXPORT */ #else /* __STL_USE_NEW_IOSTREAMS */ template ostream& __STL_CALL operator<<(ostream& s, const complex<_Tp>& __z); template istream& __STL_CALL operator>>(istream& s, complex<_Tp>& a); #endif /* __STL_USE_NEW_IOSTREAMS */ // Transcendental functions. These are defined only for float, // double, and long double. (Sqrt isn't transcendental, of course, // but it's included in this section anyway.) __STL_DECLSPEC complex __STL_CALL sqrt(const complex&); __STL_DECLSPEC complex __STL_CALL exp(const complex&); __STL_DECLSPEC complex __STL_CALL log(const complex&); __STL_DECLSPEC complex __STL_CALL log10(const complex&); __STL_DECLSPEC complex __STL_CALL pow(const complex&, int); __STL_DECLSPEC complex __STL_CALL pow(const complex&, const float&); __STL_DECLSPEC complex __STL_CALL pow(const float&, const complex&); __STL_DECLSPEC complex __STL_CALL pow(const complex&, const complex&); __STL_DECLSPEC complex __STL_CALL sin(const complex&); __STL_DECLSPEC complex __STL_CALL cos(const complex&); __STL_DECLSPEC complex __STL_CALL tan(const complex&); __STL_DECLSPEC complex __STL_CALL sinh(const complex&); __STL_DECLSPEC complex __STL_CALL cosh(const complex&); __STL_DECLSPEC complex __STL_CALL tanh(const complex&); __STL_DECLSPEC complex __STL_CALL sqrt(const complex&); __STL_DECLSPEC complex __STL_CALL exp(const complex&); __STL_DECLSPEC complex __STL_CALL log(const complex&); __STL_DECLSPEC complex __STL_CALL log10(const complex&); __STL_DECLSPEC complex __STL_CALL pow(const complex&, int); __STL_DECLSPEC complex __STL_CALL pow(const complex&, const double&); __STL_DECLSPEC complex __STL_CALL pow(const double&, const complex&); __STL_DECLSPEC complex __STL_CALL pow(const complex&, const complex&); __STL_DECLSPEC complex __STL_CALL sin(const complex&); __STL_DECLSPEC complex __STL_CALL cos(const complex&); __STL_DECLSPEC complex __STL_CALL tan(const complex&); __STL_DECLSPEC complex __STL_CALL sinh(const complex&); __STL_DECLSPEC complex __STL_CALL cosh(const complex&); __STL_DECLSPEC complex __STL_CALL tanh(const complex&); __STL_DECLSPEC complex __STL_CALL sqrt(const complex&); __STL_DECLSPEC complex __STL_CALL exp(const complex&); __STL_DECLSPEC complex __STL_CALL log(const complex&); __STL_DECLSPEC complex __STL_CALL log10(const complex&); __STL_DECLSPEC complex __STL_CALL pow(const complex&, int); __STL_DECLSPEC complex __STL_CALL pow(const complex&, const long double&); __STL_DECLSPEC complex __STL_CALL pow(const long double&, const complex&); __STL_DECLSPEC complex __STL_CALL pow(const complex&, const complex&); __STL_DECLSPEC complex __STL_CALL sin(const complex&); __STL_DECLSPEC complex __STL_CALL cos(const complex&); __STL_DECLSPEC complex __STL_CALL tan(const complex&); __STL_DECLSPEC complex __STL_CALL sinh(const complex&); __STL_DECLSPEC complex __STL_CALL cosh(const complex&); __STL_DECLSPEC complex __STL_CALL tanh(const complex&); __STL_END_NAMESPACE # ifndef __STL_LINK_TIME_INSTANTIATION # include # endif #if defined(__MRC__)||defined(__SC__) //*TY 05/01/2000 - added workaround for mpw # undef __STL_DO_ABS //*TY 05/01/2000 - claan ups # undef __STL_DO_ACOS # undef __STL_DO_ASIN # undef __STL_DO_ATAN # undef __STL_DO_ATAN2 # undef __STL_DO_COS # undef __STL_DO_COSH # undef __STL_DO_LOG # undef __STL_DO_LOG10 # undef __STL_DO_POW # undef __STL_DO_SIN # undef __STL_DO_SINH # undef __STL_DO_SQRT # undef __STL_DO_TAN # undef __STL_DO_TANH # undef __STL_DO_EXP # undef __STL_DO_HYPOT #include // can be included once comprex version of math functions are declared #endif //*TY 05/01/2000 - #endif /* __sgi_template_complex */ // Local Variables: // mode:C++ // End: