Menu

[r182]: / trunk / include / _zhsmatrix- / _zhsmatrix-complex.hpp  Maximize  Restore  History

Download this file

16 lines (14 with data), 535 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//=============================================================================
/*! _zhsmatrix*comple operator */
inline _zgsmatrix operator*(const _zhsmatrix& mat, const comple& d)
{CPPL_VERBOSE_REPORT;
zgsmatrix newmat( mat.to_zgsmatrix() );
return newmat*d;
}
//=============================================================================
/*! _zhsmatrix/comple operator */
inline _zgsmatrix operator/(const _zhsmatrix& mat, const comple& d)
{CPPL_VERBOSE_REPORT;
zgsmatrix newmat( mat.to_zgsmatrix() );
return newmat/d;
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.