GNU Octave  4.2.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Macros | Functions
CMatrix.cc File Reference
#include <cfloat>
#include <iostream>
#include <vector>
#include <sys/types.h>
#include "Array-util.h"
#include "boolMatrix.h"
#include "chMatrix.h"
#include "chol.h"
#include "dMatrix.h"
#include "CMatrix.h"
#include "CNDArray.h"
#include "CRowVector.h"
#include "dRowVector.h"
#include "CDiagMatrix.h"
#include "dDiagMatrix.h"
#include "schur.h"
#include "svd.h"
#include "DET.h"
#include "functor.h"
#include "lo-blas-proto.h"
#include "lo-error.h"
#include "lo-ieee.h"
#include "lo-lapack-proto.h"
#include "lo-mappers.h"
#include "lo-utils.h"
#include "mx-cm-dm.h"
#include "mx-cm-s.h"
#include "mx-dm-cm.h"
#include "mx-inlines.cc"
#include "mx-op-defs.h"
#include "oct-cmplx.h"
#include "oct-fftw.h"
#include "oct-locbuf.h"
#include "oct-norm.h"
Include dependency graph for CMatrix.cc:

Go to the source code of this file.

Macros

#define EMPTY_RETURN_CHECK(T)
 

Functions

static const Complex Complex_NaN_result (octave::numeric_limits< double >::NaN(), octave::numeric_limits< double >::NaN())
 
ComplexMatrix conj (const ComplexMatrix &a)
 
static char get_blas_trans_arg (bool trans, bool conj)
 
ComplexMatrix Givens (const Complex &x, const Complex &y)
 
ComplexMatrix linspace (const ComplexColumnVector &x1, const ComplexColumnVector &x2, octave_idx_type n)
 
ComplexMatrix max (const Complex &c, const ComplexMatrix &m)
 
ComplexMatrix max (const ComplexMatrix &m, const Complex &c)
 
ComplexMatrix max (const ComplexMatrix &a, const ComplexMatrix &b)
 
ComplexMatrix min (const Complex &c, const ComplexMatrix &m)
 
ComplexMatrix min (const ComplexMatrix &m, const Complex &c)
 
ComplexMatrix min (const ComplexMatrix &a, const ComplexMatrix &b)
 
boolMatrix mx_el_and (const ComplexMatrix &m, const Complex &s)
 
boolMatrix mx_el_and (const Complex &s, const ComplexMatrix &m)
 
boolMatrix mx_el_and (const ComplexMatrix &m1, const ComplexMatrix &m2)
 
boolMatrix mx_el_eq (const ComplexMatrix &m, const Complex &s)
 
boolMatrix mx_el_eq (const Complex &s, const ComplexMatrix &m)
 
boolMatrix mx_el_eq (const ComplexMatrix &m1, const ComplexMatrix &m2)
 
boolMatrix mx_el_ge (const ComplexMatrix &m, const Complex &s)
 
boolMatrix mx_el_ge (const Complex &s, const ComplexMatrix &m)
 
boolMatrix mx_el_ge (const ComplexMatrix &m1, const ComplexMatrix &m2)
 
boolMatrix mx_el_gt (const ComplexMatrix &m, const Complex &s)
 
boolMatrix mx_el_gt (const Complex &s, const ComplexMatrix &m)
 
boolMatrix mx_el_gt (const ComplexMatrix &m1, const ComplexMatrix &m2)
 
boolMatrix mx_el_le (const ComplexMatrix &m, const Complex &s)
 
boolMatrix mx_el_le (const Complex &s, const ComplexMatrix &m)
 
boolMatrix mx_el_le (const ComplexMatrix &m1, const ComplexMatrix &m2)
 
boolMatrix mx_el_lt (const ComplexMatrix &m, const Complex &s)
 
boolMatrix mx_el_lt (const Complex &s, const ComplexMatrix &m)
 
boolMatrix mx_el_lt (const ComplexMatrix &m1, const ComplexMatrix &m2)
 
boolMatrix mx_el_ne (const ComplexMatrix &m, const Complex &s)
 
boolMatrix mx_el_ne (const Complex &s, const ComplexMatrix &m)
 
boolMatrix mx_el_ne (const ComplexMatrix &m1, const ComplexMatrix &m2)
 
boolMatrix mx_el_or (const ComplexMatrix &m, const Complex &s)
 
boolMatrix mx_el_or (const Complex &s, const ComplexMatrix &m)
 
boolMatrix mx_el_or (const ComplexMatrix &m1, const ComplexMatrix &m2)
 
ComplexMatrix operator* (const ColumnVector &v, const ComplexRowVector &a)
 
ComplexMatrix operator* (const ComplexColumnVector &a, const RowVector &b)
 
ComplexMatrix operator* (const ComplexColumnVector &v, const ComplexRowVector &a)
 
ComplexMatrix operator* (const ComplexMatrix &m, const Matrix &a)
 
ComplexMatrix operator* (const Matrix &m, const ComplexMatrix &a)
 
ComplexMatrix operator* (const ComplexMatrix &a, const ComplexMatrix &b)
 
std::ostream & operator<< (std::ostream &os, const ComplexMatrix &a)
 
std::istream & operator>> (std::istream &is, ComplexMatrix &a)
 
ComplexMatrix Sylvester (const ComplexMatrix &a, const ComplexMatrix &b, const ComplexMatrix &c)
 
ComplexMatrix xgemm (const ComplexMatrix &a, const ComplexMatrix &b, blas_trans_type transa, blas_trans_type transb)
 

Macro Definition Documentation

#define EMPTY_RETURN_CHECK (   T)
Value:
if (nr == 0 || nc == 0) \
return T (nr, nc);

Definition at line 3526 of file CMatrix.cc.

Referenced by max(), and min().

Function Documentation

static const Complex Complex_NaN_result ( octave::numeric_limits< double >::  NaN(),
octave::numeric_limits< double >::  NaN() 
)
static
ComplexMatrix conj ( const ComplexMatrix a)

Definition at line 678 of file CMatrix.cc.

References a.

Referenced by Givens(), and ComplexMatrix::hermitian().

static char get_blas_trans_arg ( bool  trans,
bool  conj 
)
inlinestatic

Definition at line 3388 of file CMatrix.cc.

Referenced by xgemm().

ComplexMatrix Givens ( const Complex x,
const Complex y 
)

Definition at line 3276 of file CMatrix.cc.

References conj(), Array< T >::elem(), F77_CONST_DBLE_CMPLX_ARG, F77_DBLE_CMPLX_ARG, and F77_FUNC().

Referenced by Fgivens().

ComplexMatrix linspace ( const ComplexColumnVector x1,
const ComplexColumnVector x2,
octave_idx_type  n 
)

Definition at line 3678 of file CMatrix.cc.

References current_liboctave_error_handler, m, Array< T >::numel(), and retval.

ComplexMatrix max ( const Complex c,
const ComplexMatrix m 
)
ComplexMatrix max ( const ComplexMatrix m,
const Complex c 
)

Definition at line 3623 of file CMatrix.cc.

References max().

ComplexMatrix max ( const ComplexMatrix a,
const ComplexMatrix b 
)
ComplexMatrix min ( const Complex c,
const ComplexMatrix m 
)

Definition at line 3531 of file CMatrix.cc.

References Array< T >::columns(), EMPTY_RETURN_CHECK, m, octave::math::min(), result, and Array< T >::rows().

Referenced by min(), and operator*().

ComplexMatrix min ( const ComplexMatrix m,
const Complex c 
)

Definition at line 3551 of file CMatrix.cc.

References min().

ComplexMatrix min ( const ComplexMatrix a,
const ComplexMatrix b 
)
boolMatrix mx_el_and ( const ComplexMatrix m,
const Complex s 
)

Definition at line 3716 of file CMatrix.cc.

boolMatrix mx_el_and ( const Complex s,
const ComplexMatrix m 
)

Definition at line 3719 of file CMatrix.cc.

boolMatrix mx_el_and ( const ComplexMatrix m1,
const ComplexMatrix m2 
)

Definition at line 3722 of file CMatrix.cc.

boolMatrix mx_el_eq ( const ComplexMatrix m,
const Complex s 
)

Definition at line 3715 of file CMatrix.cc.

boolMatrix mx_el_eq ( const Complex s,
const ComplexMatrix m 
)

Definition at line 3718 of file CMatrix.cc.

boolMatrix mx_el_eq ( const ComplexMatrix m1,
const ComplexMatrix m2 
)

Definition at line 3721 of file CMatrix.cc.

boolMatrix mx_el_ge ( const ComplexMatrix m,
const Complex s 
)

Definition at line 3715 of file CMatrix.cc.

boolMatrix mx_el_ge ( const Complex s,
const ComplexMatrix m 
)

Definition at line 3718 of file CMatrix.cc.

boolMatrix mx_el_ge ( const ComplexMatrix m1,
const ComplexMatrix m2 
)

Definition at line 3721 of file CMatrix.cc.

boolMatrix mx_el_gt ( const ComplexMatrix m,
const Complex s 
)

Definition at line 3715 of file CMatrix.cc.

boolMatrix mx_el_gt ( const Complex s,
const ComplexMatrix m 
)

Definition at line 3718 of file CMatrix.cc.

boolMatrix mx_el_gt ( const ComplexMatrix m1,
const ComplexMatrix m2 
)

Definition at line 3721 of file CMatrix.cc.

boolMatrix mx_el_le ( const ComplexMatrix m,
const Complex s 
)

Definition at line 3715 of file CMatrix.cc.

boolMatrix mx_el_le ( const Complex s,
const ComplexMatrix m 
)

Definition at line 3718 of file CMatrix.cc.

boolMatrix mx_el_le ( const ComplexMatrix m1,
const ComplexMatrix m2 
)

Definition at line 3721 of file CMatrix.cc.

boolMatrix mx_el_lt ( const ComplexMatrix m,
const Complex s 
)

Definition at line 3715 of file CMatrix.cc.

boolMatrix mx_el_lt ( const Complex s,
const ComplexMatrix m 
)

Definition at line 3718 of file CMatrix.cc.

boolMatrix mx_el_lt ( const ComplexMatrix m1,
const ComplexMatrix m2 
)

Definition at line 3721 of file CMatrix.cc.

boolMatrix mx_el_ne ( const ComplexMatrix m,
const Complex s 
)

Definition at line 3715 of file CMatrix.cc.

boolMatrix mx_el_ne ( const Complex s,
const ComplexMatrix m 
)

Definition at line 3718 of file CMatrix.cc.

boolMatrix mx_el_ne ( const ComplexMatrix m1,
const ComplexMatrix m2 
)

Definition at line 3721 of file CMatrix.cc.

boolMatrix mx_el_or ( const ComplexMatrix m,
const Complex s 
)

Definition at line 3716 of file CMatrix.cc.

boolMatrix mx_el_or ( const Complex s,
const ComplexMatrix m 
)

Definition at line 3719 of file CMatrix.cc.

boolMatrix mx_el_or ( const ComplexMatrix m1,
const ComplexMatrix m2 
)

Definition at line 3722 of file CMatrix.cc.

ComplexMatrix operator* ( const ColumnVector v,
const ComplexRowVector a 
)

Definition at line 2673 of file CMatrix.cc.

References a, and tmp.

ComplexMatrix operator* ( const ComplexColumnVector a,
const RowVector b 
)

Definition at line 2680 of file CMatrix.cc.

References tmp.

ComplexMatrix operator* ( const ComplexColumnVector v,
const ComplexRowVector a 
)
ComplexMatrix operator* ( const ComplexMatrix m,
const Matrix a 
)
ComplexMatrix operator* ( const Matrix m,
const ComplexMatrix a 
)
ComplexMatrix operator* ( const ComplexMatrix a,
const ComplexMatrix b 
)

Definition at line 3519 of file CMatrix.cc.

References xgemm().

std::ostream& operator<< ( std::ostream &  os,
const ComplexMatrix a 
)
std::istream& operator>> ( std::istream &  is,
ComplexMatrix a 
)

Definition at line 3253 of file CMatrix.cc.

References Array< T >::cols(), Array< T >::elem(), is, Array< T >::rows(), and tmp.

ComplexMatrix Sylvester ( const ComplexMatrix a,
const ComplexMatrix b,
const ComplexMatrix c 
)
ComplexMatrix xgemm ( const ComplexMatrix a,
const ComplexMatrix b,
blas_trans_type  transa,
blas_trans_type  transb 
)