matrix exp() normtype->elementtype for complex exp

This commit is contained in:
Jiri Pittner 2022-08-10 16:05:14 +02:00
parent cd42cf4043
commit c3c155736e
1 changed files with 1 additions and 1 deletions

View File

@ -339,7 +339,7 @@ const T exp(const T &x, bool horner=true, int maxpower= -1, int maxtaylor= -1 )
int power;
//prepare the polynom of and effectively scale T
NRVec<typename LA_traits<T>::normtype> taylor2=exp_aux<T,typename LA_traits<T>::normtype,double>(x,power,maxpower,maxtaylor,1.);
NRVec<typename LA_traits<T>::elementtype> taylor2=exp_aux<T,typename LA_traits<T>::elementtype,double>(x,power,maxpower,maxtaylor,1.);
//std::cerr <<"TEST power "<<power<<std::endl;