|
| template<class X > |
| matrix< X > | operator* (const matrix< X > &A, const matrix< X > &B) |
| |
| template<class X > |
| matrix< X > | operator/ (const matrix< X > &A, const matrix< X > &B) |
| |
| template<class X > |
| matrix< X > | operator+ (const matrix< X > &A, const matrix< X > &B) |
| |
| template<class X > |
| matrix< X > | operator- (const matrix< X > &A, const matrix< X > &B) |
| |
| template<class X > |
| matrix< X > | operator* (const matrix< X > &A, const X &B) |
| |
| template<class X > |
| matrix< X > | operator/ (const matrix< X > &A, const X &B) |
| |
| template<class X > |
| matrix< X > | operator+ (const matrix< X > &A, const X &B) |
| |
| template<class X > |
| matrix< X > | operator- (const matrix< X > &A, const X &B) |
| |
| template<class X > |
| matrix< X > | operator* (const X &A, const matrix< X > &B) |
| |
| template<class X > |
| matrix< X > | operator/ (const X &A, const matrix< X > &B) |
| |
| template<class X > |
| matrix< X > | operator+ (const X &A, const matrix< X > &B) |
| |
| template<class X > |
| matrix< X > | operator- (const X &A, const matrix< X > &B) |
| |