IT++ Logo
Namespaces | Functions

mat.cpp File Reference

Matrix Class Implementation. More...

#include <itpp/base/mat.h>

Go to the source code of this file.

Namespaces

namespace  itpp
 

\


Functions

template mat itpp::operator+ (const mat &m1, const mat &m2)
template cmat itpp::operator+ (const cmat &m1, const cmat &m2)
template imat itpp::operator+ (const imat &m1, const imat &m2)
template smat itpp::operator+ (const smat &m1, const smat &m2)
template bmat itpp::operator+ (const bmat &m1, const bmat &m2)
template mat itpp::operator+ (const mat &m, double t)
template cmat itpp::operator+ (const cmat &m, std::complex< double > t)
template imat itpp::operator+ (const imat &m, int t)
template smat itpp::operator+ (const smat &m, short t)
template bmat itpp::operator+ (const bmat &m, bin t)
template mat itpp::operator+ (double t, const mat &m)
template cmat itpp::operator+ (std::complex< double > t, const cmat &m)
template imat itpp::operator+ (int t, const imat &m)
template smat itpp::operator+ (short t, const smat &m)
template bmat itpp::operator+ (bin t, const bmat &m)
template mat itpp::operator- (const mat &m1, const mat &m2)
template cmat itpp::operator- (const cmat &m1, const cmat &m2)
template imat itpp::operator- (const imat &m1, const imat &m2)
template smat itpp::operator- (const smat &m1, const smat &m2)
template bmat itpp::operator- (const bmat &m1, const bmat &m2)
template mat itpp::operator- (const mat &m, double t)
template cmat itpp::operator- (const cmat &m, std::complex< double > t)
template imat itpp::operator- (const imat &m, int t)
template smat itpp::operator- (const smat &m, short t)
template bmat itpp::operator- (const bmat &m, bin t)
template mat itpp::operator- (double t, const mat &m)
template cmat itpp::operator- (std::complex< double > t, const cmat &m)
template imat itpp::operator- (int t, const imat &m)
template smat itpp::operator- (short t, const smat &m)
template bmat itpp::operator- (bin t, const bmat &m)
template mat itpp::operator- (const mat &m)
template cmat itpp::operator- (const cmat &m)
template imat itpp::operator- (const imat &m)
template smat itpp::operator- (const smat &m)
template bmat itpp::operator- (const bmat &m)
template mat itpp::operator* (const mat &m1, const mat &m2)
template cmat itpp::operator* (const cmat &m1, const cmat &m2)
template imat itpp::operator* (const imat &m1, const imat &m2)
template smat itpp::operator* (const smat &m1, const smat &m2)
template bmat itpp::operator* (const bmat &m1, const bmat &m2)
template vec itpp::operator* (const mat &m, const vec &v)
template cvec itpp::operator* (const cmat &m, const cvec &v)
template ivec itpp::operator* (const imat &m, const ivec &v)
template svec itpp::operator* (const smat &m, const svec &v)
template bvec itpp::operator* (const bmat &m, const bvec &v)
template mat itpp::operator* (const vec &v, const mat &m)
template cmat itpp::operator* (const cvec &v, const cmat &m)
template imat itpp::operator* (const ivec &v, const imat &m)
template smat itpp::operator* (const svec &v, const smat &m)
template bmat itpp::operator* (const bvec &v, const bmat &m)
template mat itpp::operator* (const mat &m, double t)
template cmat itpp::operator* (const cmat &m, std::complex< double > t)
template imat itpp::operator* (const imat &m, int t)
template smat itpp::operator* (const smat &m, short t)
template bmat itpp::operator* (const bmat &m, bin t)
template mat itpp::operator* (double t, const mat &m)
template cmat itpp::operator* (std::complex< double > t, const cmat &m)
template imat itpp::operator* (int t, const imat &m)
template smat itpp::operator* (short t, const smat &m)
template bmat itpp::operator* (bin t, const bmat &m)
template mat itpp::elem_mult (const mat &m1, const mat &m2)
template cmat itpp::elem_mult (const cmat &m1, const cmat &m2)
template imat itpp::elem_mult (const imat &m1, const imat &m2)
template smat itpp::elem_mult (const smat &m1, const smat &m2)
template bmat itpp::elem_mult (const bmat &m1, const bmat &m2)
template void itpp::elem_mult_out (const mat &m1, const mat &m2, mat &out)
template void itpp::elem_mult_out (const cmat &m1, const cmat &m2, cmat &out)
template void itpp::elem_mult_out (const imat &m1, const imat &m2, imat &out)
template void itpp::elem_mult_out (const smat &m1, const smat &m2, smat &out)
template void itpp::elem_mult_out (const bmat &m1, const bmat &m2, bmat &out)
template void itpp::elem_mult_out (const mat &m1, const mat &m2, const mat &m3, mat &out)
template void itpp::elem_mult_out (const cmat &m1, const cmat &m2, const cmat &m3, cmat &out)
template void itpp::elem_mult_out (const imat &m1, const imat &m2, const imat &m3, imat &out)
template void itpp::elem_mult_out (const smat &m1, const smat &m2, const smat &m3, smat &out)
template void itpp::elem_mult_out (const bmat &m1, const bmat &m2, const bmat &m3, bmat &out)
template void itpp::elem_mult_out (const mat &m1, const mat &m2, const mat &m3, const mat &m4, mat &out)
template void itpp::elem_mult_out (const cmat &m1, const cmat &m2, const cmat &m3, const cmat &m4, cmat &out)
template void itpp::elem_mult_out (const imat &m1, const imat &m2, const imat &m3, const imat &m4, imat &out)
template void itpp::elem_mult_out (const smat &m1, const smat &m2, const smat &m3, const smat &m4, smat &out)
template void itpp::elem_mult_out (const bmat &m1, const bmat &m2, const bmat &m3, const bmat &m4, bmat &out)
template void itpp::elem_mult_inplace (const mat &m1, mat &m2)
template void itpp::elem_mult_inplace (const cmat &m1, cmat &m2)
template void itpp::elem_mult_inplace (const imat &m1, imat &m2)
template void itpp::elem_mult_inplace (const smat &m1, smat &m2)
template void itpp::elem_mult_inplace (const bmat &m1, bmat &m2)
template double itpp::elem_mult_sum (const mat &m1, const mat &m2)
template std::complex< double > itpp::elem_mult_sum (const cmat &m1, const cmat &m2)
template int itpp::elem_mult_sum (const imat &m1, const imat &m2)
template short itpp::elem_mult_sum (const smat &m1, const smat &m2)
template bin itpp::elem_mult_sum (const bmat &m1, const bmat &m2)
template mat itpp::operator/ (const mat &m, double t)
template cmat itpp::operator/ (const cmat &m, std::complex< double > t)
template imat itpp::operator/ (const imat &m, int t)
template smat itpp::operator/ (const smat &m, short t)
template bmat itpp::operator/ (const bmat &m, bin t)
template mat itpp::elem_div (const mat &m1, const mat &m2)
template cmat itpp::elem_div (const cmat &m1, const cmat &m2)
template imat itpp::elem_div (const imat &m1, const imat &m2)
template smat itpp::elem_div (const smat &m1, const smat &m2)
template bmat itpp::elem_div (const bmat &m1, const bmat &m2)
template void itpp::elem_div_out (const mat &m1, const mat &m2, mat &out)
template void itpp::elem_div_out (const cmat &m1, const cmat &m2, cmat &out)
template void itpp::elem_div_out (const imat &m1, const imat &m2, imat &out)
template void itpp::elem_div_out (const smat &m1, const smat &m2, smat &out)
template void itpp::elem_div_out (const bmat &m1, const bmat &m2, bmat &out)
template double itpp::elem_div_sum (const mat &m1, const mat &m2)
template std::complex< double > itpp::elem_div_sum (const cmat &m1, const cmat &m2)
template int itpp::elem_div_sum (const imat &m1, const imat &m2)
template short itpp::elem_div_sum (const smat &m1, const smat &m2)
template bin itpp::elem_div_sum (const bmat &m1, const bmat &m2)
template mat itpp::concat_horizontal (const mat &m1, const mat &m2)
template cmat itpp::concat_horizontal (const cmat &m1, const cmat &m2)
template imat itpp::concat_horizontal (const imat &m1, const imat &m2)
template smat itpp::concat_horizontal (const smat &m1, const smat &m2)
template bmat itpp::concat_horizontal (const bmat &m1, const bmat &m2)
template mat itpp::concat_vertical (const mat &m1, const mat &m2)
template cmat itpp::concat_vertical (const cmat &m1, const cmat &m2)
template imat itpp::concat_vertical (const imat &m1, const imat &m2)
template smat itpp::concat_vertical (const smat &m1, const smat &m2)
template bmat itpp::concat_vertical (const bmat &m1, const bmat &m2)
template std::ostream & itpp::operator<< (std::ostream &os, const mat &m)
template std::ostream & itpp::operator<< (std::ostream &os, const cmat &m)
template std::ostream & itpp::operator<< (std::ostream &os, const imat &m)
template std::ostream & itpp::operator<< (std::ostream &os, const smat &m)
template std::ostream & itpp::operator<< (std::ostream &os, const bmat &m)
template std::istream & itpp::operator>> (std::istream &is, mat &m)
template std::istream & itpp::operator>> (std::istream &is, cmat &m)
template std::istream & itpp::operator>> (std::istream &is, imat &m)
template std::istream & itpp::operator>> (std::istream &is, smat &m)
template std::istream & itpp::operator>> (std::istream &is, bmat &m)

Detailed Description

Matrix Class Implementation.

Author:
Tony Ottosson, Tobias Ringstrom, Adam Piatyszek and Conrad Sanderson

-------------------------------------------------------------------------

IT++ - C++ library of mathematical, signal processing, speech processing, and communications classes and functions

Copyright (C) 1995-2008 (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.cpp.

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
SourceForge Logo

Generated on Wed Feb 9 2011 13:47:17 for IT++ by Doxygen 1.7.3