Go to the source code of this file.
|
| | gslpp |
| | Complex number, vector and matrix manipulation using GSL.
|
| |
|
| matrix< complex > | gslpp::operator* (const complex &z, const matrix< complex > m) |
| |
| matrix< complex > | gslpp::operator* (const double &a, const matrix< complex > m) |
| |
| vector< complex > | gslpp::operator* (const vector< complex > &v, const matrix< complex > m) |
| |
| vector< complex > | gslpp::operator* (const vector< double > &v, const matrix< complex > m) |
| |
| matrix< complex > | gslpp::operator+ (const complex &z, const matrix< complex > m) |
| |
| matrix< complex > | gslpp::operator+ (const double &a, const matrix< complex > m) |
| |
| matrix< complex > | gslpp::operator+ (const matrix< double > m1, const matrix< complex > m2) |
| |
| matrix< complex > | gslpp::operator- (const complex &z, const matrix< complex > m) |
| |
| matrix< complex > | gslpp::operator- (const double &a, const matrix< complex > m) |
| |
| matrix< complex > | gslpp::operator- (const matrix< double > m1, const matrix< complex > m2) |
| |
| std::ostream & | gslpp::operator<< (std::ostream &output, const matrix< complex > &m) |
| |