PLaSK library
Loading...
Searching...
No Matches
tnt_cmat.h File Reference
#include "tnt_subscript.h"
#include "tnt_vec.h"
#include <cstdlib>
#include <cassert>
#include <iostream>
#include <sstream>
Include dependency graph for tnt_cmat.h:
This graph shows which files directly or indirectly include this file:

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 >
int 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)