Go to the source code of this file.
Functions | |
template<long l> | |
zcovector_small< l > | operator* (const comple &v, const zcovector_small< l > &A) |
template<long l> | |
zrovector_small< l > | operator* (const comple &v, const zrovector_small< l > &A) |
template<long m, long n> | |
zgematrix_small< m, n > | operator* (const comple &v, const zgematrix_small< m, n > &A) |
template<long n> | |
zhematrix_small< n > | operator* (const comple &v, const zhematrix_small< n > &A) |
zcovector_small<l> operator* | ( | const comple & | v, |
const zcovector_small< l > & | A | ||
) | [inline] |
Definition at line 4 of file comple-small.hpp.
References i().
zrovector_small<l> operator* | ( | const comple & | v, |
const zrovector_small< l > & | A | ||
) | [inline] |
Definition at line 16 of file comple-small.hpp.
References i().
zgematrix_small<m,n> operator* | ( | const comple & | v, |
const zgematrix_small< m, n > & | A | ||
) | [inline] |
Definition at line 28 of file comple-small.hpp.
References i().
zhematrix_small<n> operator* | ( | const comple & | v, |
const zhematrix_small< n > & | A | ||
) | [inline] |
Definition at line 42 of file comple-small.hpp.
References zhematrix_small< n >::array.
{VERBOSE_REPORT; zhematrix_small<n> X; for(long k=0; k<(n*(n+1))/2; k++){ X.array[k] =v*A.array[k]; } return X; }