マトリックス ライブラリヘッダ for C++ More...
#include "tools++.h"#include <math.h>#include "Vector.h"

Go to the source code of this file.
Classes | |
| class | Matrix< T > |
Namespaces | |
| namespace | jbxl |
Functions | |
| template<typename T > | |
| void | print_Matrix (FILE *fp, Matrix< T > a) |
| template<typename T > | |
| Matrix< T > | dup_Matrix (Matrix< T > a) |
| template<typename T > | |
| Matrix< T > | operator* (const Matrix< T > a, const Matrix< T > b) |
| template<typename T > | |
| Vector< T > | operator* (const Matrix< T > a, const Vector< T > v) |
| template<typename T > | |
| Matrix< T > | operator- (const Matrix< T > a) |
| template<typename T > | |
| Matrix< T > | operator+ (const Matrix< T > a, const Matrix< T > b) |
| template<typename T > | |
| Matrix< T > | operator- (const Matrix< T > a, const Matrix< T > b) |
| template<typename T , typename R > | |
| Matrix< T > | operator* (const R d, const Matrix< T > a) |
| template<typename T , typename R > | |
| Matrix< T > | operator* (const Matrix< T > a, const R d) |
| template<typename T , typename R > | |
| Matrix< T > | operator/ (const Matrix< T > a, const R d) |
| template<typename T > | |
| bool | operator== (const Matrix< T > v1, const Matrix< T > v2) |
| template<typename T > | |
| bool | isSameDimension (const Matrix< T > v1, const Matrix< T > v2) |
Definition in file Matrix++.h.
1.6.1