#include <vector>
#include <stdexcept>
#include "matrix_fwd.h"
#include "tags.h"
Go to the source code of this file.
|
template<typename C > |
std::vector< Vector< C > > | atlas::matrix::standard_basis (size_t r) |
|
template<typename C > |
void | atlas::matrix::initBasis (std::vector< Vector< C > > &v, size_t n) |
|
template<typename C > |
PID_Matrix< C > & | atlas::matrix::operator+= (PID_Matrix< C > &A, C c) |
|
template<typename C > |
PID_Matrix< C > | atlas::matrix::operator+ (PID_Matrix< C > A, C c) |
|
template<typename C > |
PID_Matrix< C > & | atlas::matrix::operator-= (PID_Matrix< C > &A, C c) |
|
template<typename C > |
PID_Matrix< C > | atlas::matrix::operator- (PID_Matrix< C > A, C c) |
|
template<typename C > |
PID_Matrix< C > | atlas::matrix::operator- (C c, PID_Matrix< C > A) |
|
template<typename C > |
Vector< C > & | atlas::matrix::operator/= (Vector< C > &v, C c) |
|
template<typename C > |
Vector< C > & | atlas::matrix::divide (Vector< C > &v, C c) |
|
template<typename C > |
Vector< C > & | atlas::matrix::operator%= (Vector< C > &v, C c) |
|
template<typename C > |
Vector< C > | atlas::matrix::operator/ (Vector< C > v, C c) |
|