#include <itpp/config.h>
#include <string>
#include <complex>
#include <itpp/itconfig.h>
#include <itpp/base/itassert.h>
#include <itpp/base/factory.h>
#include <itpp/base/vec.h>
Go to the source code of this file.
Namespaces | |
namespace | itpp |
Classes | |
class | itpp::Mat< Num_T > |
Templated Matrix Class. More... | |
Typedefs | |
typedef Mat< bin > | bmat |
bin matrix | |
Functions | |
template<class Num_T> | |
const Mat< Num_T > | itpp::concat_horizontal (const Mat< Num_T > &m1, const Mat< Num_T > &m2) |
Horizontal concatenation of two matrices. | |
template<class Num_T> | |
const Mat< Num_T > | itpp::concat_vertical (const Mat< Num_T > &m1, const Mat< Num_T > &m2) |
Vertical concatenation of two matrices. | |
template<class Num_T> | |
const Mat< Num_T > | itpp::operator+ (const Mat< Num_T > &m1, const Mat< Num_T > &m2) |
Addition of two matricies. | |
template<class Num_T> | |
const Mat< Num_T > | itpp::operator+ (const Mat< Num_T > &m, Num_T t) |
Addition of a matrix and a scalar. | |
template<class Num_T> | |
const Mat< Num_T > | itpp::operator+ (Num_T t, const Mat< Num_T > &m) |
Addition of a scalar and a matrix. | |
template<class Num_T> | |
const Mat< Num_T > | itpp::operator- (const Mat< Num_T > &m1, const Mat< Num_T > &m2) |
Subtraction of two matrices. | |
template<class Num_T> | |
const Mat< Num_T > | itpp::operator- (const Mat< Num_T > &m, Num_T t) |
Subtraction of matrix and scalar. | |
template<class Num_T> | |
const Mat< Num_T > | itpp::operator- (Num_T t, const Mat< Num_T > &m) |
Subtraction of scalar and matrix. | |
template<class Num_T> | |
const Mat< Num_T > | itpp::operator- (const Mat< Num_T > &m) |
Negation of matrix. | |
template<class Num_T> | |
const Mat< Num_T > | itpp::operator * (const Mat< Num_T > &m1, const Mat< Num_T > &m2) |
Multiplication of two matricies. | |
template<class Num_T> | |
const Vec< Num_T > | itpp::operator * (const Mat< Num_T > &m, const Vec< Num_T > &v) |
Multiplication of matrix and vector. | |
template<class Num_T> | |
const Mat< Num_T > | itpp::operator * (const Vec< Num_T > &v, const Mat< Num_T > &m) |
Multiplication of vector and matrix (only works for a matrix that is a row vector). | |
template<class Num_T> | |
const Mat< Num_T > | itpp::operator * (const Mat< Num_T > &m, Num_T t) |
Multiplication of matrix and scalar. | |
template<class Num_T> | |
const Mat< Num_T > | itpp::operator * (Num_T t, const Mat< Num_T > &m) |
Multiplication of scalar and matrix. | |
template<class Num_T> | |
const Mat< Num_T > | itpp::elem_mult (const Mat< Num_T > &m1, const Mat< Num_T > &m2) |
Element wise multiplication of two matricies. | |
template<class Num_T> | |
const Mat< Num_T > | itpp::operator/ (const Mat< Num_T > &m, Num_T t) |
Division of matrix and scalar. | |
template<class Num_T> | |
const Mat< Num_T > | itpp::elem_div (const Mat< Num_T > &m1, const Mat< Num_T > &m2) |
Element wise division of two matricies. | |
template<> | |
const mat | itpp::operator * (const mat &m1, const mat &m2) |
template<> | |
const cmat | itpp::operator * (const cmat &m1, const cmat &m2) |
template<> | |
const vec | itpp::operator * (const mat &m, const vec &v) |
template<> | |
const cvec | itpp::operator * (const cmat &m, const cvec &v) |
template<class Num_T> | |
std::ostream & | itpp::operator<< (std::ostream &os, const Mat< Num_T > &m) |
template<class Num_T> | |
std::istream & | itpp::operator>> (std::istream &is, Mat< Num_T > &m) |
template const mat | itpp::operator+ (const mat &m1, const mat &m2) |
Template instantiation of operator+. | |
template const cmat | itpp::operator+ (const cmat &m1, const cmat &m2) |
Template instantiation of operator+. | |
template const imat | itpp::operator+ (const imat &m1, const imat &m2) |
Template instantiation of operator+. | |
template const smat | itpp::operator+ (const smat &m1, const smat &m2) |
Template instantiation of operator+. | |
template const bmat | itpp::operator+ (const bmat &m1, const bmat &m2) |
Template instantiation of operator+. | |
template const mat | itpp::operator+ (const mat &m, double t) |
Template instantiation of operator+. | |
template const cmat | itpp::operator+ (const cmat &m, std::complex< double > t) |
Template instantiation of operator+. | |
template const imat | itpp::operator+ (const imat &m, int t) |
Template instantiation of operator+. | |
template const smat | itpp::operator+ (const smat &m, short t) |
Template instantiation of operator+. | |
template const bmat | itpp::operator+ (const bmat &m, bin t) |
Template instantiation of operator+. | |
template const mat | itpp::operator+ (double t, const mat &m) |
Template instantiation of operator+. | |
template const cmat | itpp::operator+ (std::complex< double > t, const cmat &m) |
Template instantiation of operator+. | |
template const imat | itpp::operator+ (int t, const imat &m) |
Template instantiation of operator+. | |
template const smat | itpp::operator+ (short t, const smat &m) |
Template instantiation of operator+. | |
template const bmat | itpp::operator+ (bin t, const bmat &m) |
Template instantiation of operator+. | |
template const mat | itpp::operator- (const mat &m1, const mat &m2) |
Template instantiation of operator-. | |
template const cmat | itpp::operator- (const cmat &m1, const cmat &m2) |
Template instantiation of operator-. | |
template const imat | itpp::operator- (const imat &m1, const imat &m2) |
Template instantiation of operator-. | |
template const smat | itpp::operator- (const smat &m1, const smat &m2) |
Template instantiation of operator-. | |
template const bmat | itpp::operator- (const bmat &m1, const bmat &m2) |
Template instantiation of operator-. | |
template const mat | itpp::operator- (const mat &m, double t) |
Template instantiation of operator-. | |
template const cmat | itpp::operator- (const cmat &m, std::complex< double > t) |
Template instantiation of operator-. | |
template const imat | itpp::operator- (const imat &m, int t) |
Template instantiation of operator-. | |
template const smat | itpp::operator- (const smat &m, short t) |
Template instantiation of operator-. | |
template const bmat | itpp::operator- (const bmat &m, bin t) |
Template instantiation of operator-. | |
template const mat | itpp::operator- (double t, const mat &m) |
Template instantiation of operator-. | |
template const cmat | itpp::operator- (std::complex< double > t, const cmat &m) |
Template instantiation of operator-. | |
template const imat | itpp::operator- (int t, const imat &m) |
Template instantiation of operator-. | |
template const smat | itpp::operator- (short t, const smat &m) |
Template instantiation of operator-. | |
template const bmat | itpp::operator- (bin t, const bmat &m) |
Template instantiation of operator-. | |
template const mat | itpp::operator- (const mat &m) |
Template instantiation of operator-. | |
template const cmat | itpp::operator- (const cmat &m) |
Template instantiation of operator-. | |
template const imat | itpp::operator- (const imat &m) |
Template instantiation of operator-. | |
template const smat | itpp::operator- (const smat &m) |
Template instantiation of operator-. | |
template const bmat | itpp::operator- (const bmat &m) |
Template instantiation of operator-. | |
template const imat | itpp::operator * (const imat &m1, const imat &m2) |
Template instantiation of operator*. | |
template const smat | itpp::operator * (const smat &m1, const smat &m2) |
Template instantiation of operator*. | |
template const bmat | itpp::operator * (const bmat &m1, const bmat &m2) |
Template instantiation of operator*. | |
template const ivec | itpp::operator * (const imat &m, const ivec &v) |
Template instantiation of operator*. | |
template const svec | itpp::operator * (const smat &m, const svec &v) |
Template instantiation of operator*. | |
template const bvec | itpp::operator * (const bmat &m, const bvec &v) |
Template instantiation of operator*. | |
template const mat | itpp::operator * (const vec &v, const mat &m) |
Template instantiation of operator*. | |
template const cmat | itpp::operator * (const cvec &v, const cmat &m) |
Template instantiation of operator*. | |
template const imat | itpp::operator * (const ivec &v, const imat &m) |
Template instantiation of operator*. | |
template const smat | itpp::operator * (const svec &v, const smat &m) |
Template instantiation of operator*. | |
template const bmat | itpp::operator * (const bvec &v, const bmat &m) |
Template instantiation of operator*. | |
template const mat | itpp::operator * (const mat &m, double t) |
Template instantiation of operator*. | |
template const cmat | itpp::operator * (const cmat &m, std::complex< double > t) |
Template instantiation of operator*. | |
template const imat | itpp::operator * (const imat &m, int t) |
Template instantiation of operator*. | |
template const smat | itpp::operator * (const smat &m, short t) |
Template instantiation of operator*. | |
template const bmat | itpp::operator * (const bmat &m, bin t) |
Template instantiation of operator*. | |
template const mat | itpp::operator * (double t, const mat &m) |
Template instantiation of operator*. | |
template const cmat | itpp::operator * (std::complex< double > t, const cmat &m) |
Template instantiation of operator*. | |
template const imat | itpp::operator * (int t, const imat &m) |
Template instantiation of operator*. | |
template const smat | itpp::operator * (short t, const smat &m) |
Template instantiation of operator*. | |
template const bmat | itpp::operator * (bin t, const bmat &m) |
Template instantiation of operator*. | |
template const mat | itpp::elem_mult (const mat &m1, const mat &m2) |
Template instantiation of elem_mult. | |
template const cmat | itpp::elem_mult (const cmat &m1, const cmat &m2) |
Template instantiation of elem_mult. | |
template const imat | itpp::elem_mult (const imat &m1, const imat &m2) |
Template instantiation of elem_mult. | |
template const smat | itpp::elem_mult (const smat &m1, const smat &m2) |
Template instantiation of elem_mult. | |
template const bmat | itpp::elem_mult (const bmat &m1, const bmat &m2) |
Template instantiation of elem_mult. | |
template const mat | itpp::operator/ (const mat &m, double t) |
Template instantiation of operator/. | |
template const cmat | itpp::operator/ (const cmat &m, std::complex< double > t) |
Template instantiation of operator/. | |
template const imat | itpp::operator/ (const imat &m, int t) |
Template instantiation of operator/. | |
template const smat | itpp::operator/ (const smat &m, short t) |
Template instantiation of operator/. | |
template const bmat | itpp::operator/ (const bmat &m, bin t) |
Template instantiation of operator/. | |
template const mat | itpp::elem_div (const mat &m1, const mat &m2) |
Template instantiation of elem_div. | |
template const cmat | itpp::elem_div (const cmat &m1, const cmat &m2) |
Template instantiation of elem_div. | |
template const imat | itpp::elem_div (const imat &m1, const imat &m2) |
Template instantiation of elem_div. | |
template const smat | itpp::elem_div (const smat &m1, const smat &m2) |
Template instantiation of elem_div. | |
template const bmat | itpp::elem_div (const bmat &m1, const bmat &m2) |
Template instantiation of elem_div. | |
template const mat | itpp::concat_horizontal (const mat &m1, const mat &m2) |
Template instantiation of concat_horizontal. | |
template const cmat | itpp::concat_horizontal (const cmat &m1, const cmat &m2) |
Template instantiation of concat_horizontal. | |
template const imat | itpp::concat_horizontal (const imat &m1, const imat &m2) |
Template instantiation of concat_horizontal. | |
template const smat | itpp::concat_horizontal (const smat &m1, const smat &m2) |
Template instantiation of concat_horizontal. | |
template const bmat | itpp::concat_horizontal (const bmat &m1, const bmat &m2) |
Template instantiation of concat_horizontal. | |
template const mat | itpp::concat_vertical (const mat &m1, const mat &m2) |
Template instantiation of concat_vertical. | |
template const cmat | itpp::concat_vertical (const cmat &m1, const cmat &m2) |
Template instantiation of concat_vertical. | |
template const imat | itpp::concat_vertical (const imat &m1, const imat &m2) |
Template instantiation of concat_vertical. | |
template const smat | itpp::concat_vertical (const smat &m1, const smat &m2) |
Template instantiation of concat_vertical. | |
template const bmat | itpp::concat_vertical (const bmat &m1, const bmat &m2) |
Template instantiation of concat_vertical. | |
template std::ostream & | itpp::operator<< (std::ostream &os, const mat &m) |
Template instantiation of output stream. | |
template std::ostream & | itpp::operator<< (std::ostream &os, const cmat &m) |
Template instantiation of output stream. | |
template std::ostream & | itpp::operator<< (std::ostream &os, const imat &m) |
Template instantiation of output stream. | |
template std::ostream & | itpp::operator<< (std::ostream &os, const smat &m) |
Template instantiation of output stream. | |
template std::ostream & | itpp::operator<< (std::ostream &os, const bmat &m) |
Template instantiation of output stream. | |
template std::istream & | itpp::operator>> (std::istream &is, mat &m) |
Template instantiation of input stream. | |
template std::istream & | itpp::operator>> (std::istream &is, cmat &m) |
Template instantiation of input stream. | |
template std::istream & | itpp::operator>> (std::istream &is, imat &m) |
Template instantiation of input stream. | |
template std::istream & | itpp::operator>> (std::istream &is, smat &m) |
Template instantiation of input stream. | |
template std::istream & | itpp::operator>> (std::istream &is, bmat &m) |
Template instantiation of input stream. |
$Date$ $Revision$
-------------------------------------------------------------------------
IT++ - C++ library of mathematical, signal processing, speech processing, and communications classes and functions
Copyright (C) 1995-2007 (see AUTHORS file for a list of contributors)
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-------------------------------------------------------------------------
Definition in file mat.h.
Generated on Thu Aug 30 02:47:20 2007 for IT++ by Doxygen 1.5.3