|
double EXPORT_GSL | dot (const gsl_vector *lhs, const gsl_vector *rhs) |
|
void EXPORT_GSL | matrix_inv_sqrt (Matrix &m) |
|
void EXPORT_GSL | matrix_orthogonalize (Matrix &M) |
|
void EXPORT_GSL | multiply_m_m (Matrix &result, const Matrix &lhs, const Matrix &rhs) |
|
void EXPORT_GSL | multiply_m_mT (Matrix &result, const Matrix &lhs, const Matrix &rhs) |
|
void EXPORT_GSL | multiply_m_v (Vector &result, const Matrix &rhs, const Vector &lhs) |
|
void EXPORT_GSL | multiply_mT_m (Matrix &result, const Matrix &lhs, const Matrix &rhs) |
|
void EXPORT_GSL | multiply_v_m (Vector &result, const Vector &lhs, const Matrix &rhs) |
|
bool EXPORT_GSL | operator!= (const matrix_iterator &lhs, const matrix_iterator &rhs) |
|
bool EXPORT_GSL | operator!= (const const_matrix_iterator &lhs, const const_matrix_iterator &rhs) |
|
Vector | operator* (const Vector &lhs, double f) |
|
Matrix EXPORT_GSL | operator* (const Matrix &lhs, const Matrix &rhs) |
|
vector_iterator | operator+ (const vector_iterator &it, int dist) |
|
vector_iterator | operator+ (int dist, const vector_iterator &it) |
|
Vector | operator+ (const Vector &lhs, const Vector &rhs) |
|
const_vector_iterator | operator+ (const const_vector_iterator &it, int dist) |
|
const_vector_iterator | operator+ (int dist, const const_vector_iterator &it) |
|
Matrix EXPORT_GSL | operator+ (const Matrix &lhs, const Matrix &rhs) |
|
vector_iterator | operator- (const vector_iterator &it, int dist) |
|
Vector | operator- (const Vector &lhs, const Vector &rhs) |
|
const_vector_iterator | operator- (const const_vector_iterator &it, int dist) |
|
Matrix EXPORT_GSL | operator- (const Matrix &lhs, const Matrix &rhs) |
|
std::ostream & | operator<< (std::ostream &os, const Vector &v) |
|
std::ostream & | operator<< (std::ostream &os, const Matrix &m) |
|
bool EXPORT_GSL | operator== (const matrix_iterator &lhs, const matrix_iterator &rhs) |
|
bool EXPORT_GSL | operator== (const const_matrix_iterator &lhs, const const_matrix_iterator &rhs) |
|