Home
last modified time | relevance | path

Searched defs:complexToT (Results 1 – 3 of 3) sorted by relevance

/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/src/utils/
H A DcomplexUtils.hpp97 inline T complexToT(const complex_t& c){return c;} in complexToT() function
99 inline real_t complexToT(const complex_t& c){return c.real();} //real specialization in complexToT() function
H A DVector.hpp1104 inline T complexToT(const Vector<complex_t>& c){return c;} in complexToT() function
1106 inline Vector<real_t> complexToT(const Vector<complex_t>& c){ return real(c);} in complexToT() function
H A DMatrix.hpp1944 inline T complexToT(const Matrix<complex_t>& c) {return c;} in complexToT() function
1946 inline Matrix<real_t> complexToT(const Matrix<complex_t>& c) { return realPart(c);} in complexToT() function
1948 inline Matrix<real_t> complexToT(const complex_t& c) {return Matrix<real_t>(1,1,c.real());} in complexToT() function
1950 inline Matrix<complex_t> complexToT(const complex_t& c) {return Matrix<complex_t>(1,1,c);} in complexToT() function