Blender V2.61 - r43446
Classes | Namespaces | Functions

cmat.h File Reference

#include "subscript.h"
#include "vec.h"
#include <stdlib.h>
#include <assert.h>
#include <iostream>

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 >
void TNT::transpose (const Matrix< T > &A, Matrix< T > &S)
template<class T >
void TNT::matmult (Matrix< T > &C, const Matrix< T > &A, const Matrix< T > &B)
template<class T >
void TNT::matmult (Vector< T > &y, const Matrix< T > &A, const Vector< T > &x)
template<class T >
void TNT::matmultdiag (Matrix< T > &C, const Matrix< T > &A, const Vector< T > &diag)
template<class T >
void TNT::matmultdiag (Matrix< T > &C, const Vector< T > &diag, const Matrix< T > &A)