Blender V2.61 - r43446
|
#include "tnt_subscript.h"
#include "tnt_vec.h"
#include <cstdlib>
#include <cassert>
#include <iostream>
#include <sstream>
Go to the source code of this file.
Classes | |
class | TNT::Matrix< T > |
Namespaces | |
namespace | TNT |
Functions | |
template<class T > | |
std::ostream & | TNT::operator<< (std::ostream &s, const Matrix< T > &A) |
template<class T > | |
std::istream & | TNT::operator>> (std::istream &s, Matrix< T > &A) |
template<class T > | |
Matrix< T > | TNT::operator+ (const Matrix< T > &A, const Matrix< T > &B) |
template<class T > | |
Matrix< T > | TNT::operator- (const Matrix< T > &A, const Matrix< T > &B) |
template<class T > | |
Matrix< T > | TNT::mult_element (const Matrix< T > &A, const Matrix< T > &B) |
template<class T > | |
Matrix< T > | TNT::transpose (const Matrix< T > &A) |
template<class T > | |
Matrix< T > | TNT::matmult (const Matrix< T > &A, const Matrix< T > &B) |
template<class T > | |
Matrix< T > | TNT::operator* (const Matrix< T > &A, const Matrix< T > &B) |
template<class T > | |
void | TNT::matmult (Matrix< T > &C, const Matrix< T > &A, const Matrix< T > &B) |
template<class T > | |
Vector< T > | TNT::matmult (const Matrix< T > &A, const Vector< T > &x) |
template<class T > | |
Vector< T > | TNT::operator* (const Matrix< T > &A, const Vector< T > &x) |
Definition in file tnt_cmat.h.