Navigation

Operators and Keywords

Function List:

C++ API

dMatrix.cc File Reference

#include <cfloat>
#include <iostream>
#include <vector>
#include "Array-util.h"
#include "byte-swap.h"
#include "dMatrix.h"
#include "dbleAEPBAL.h"
#include "DET.h"
#include "dbleSCHUR.h"
#include "dbleSVD.h"
#include "dbleCHOL.h"
#include "f77-fcn.h"
#include "functor.h"
#include "lo-error.h"
#include "oct-locbuf.h"
#include "lo-ieee.h"
#include "lo-mappers.h"
#include "lo-utils.h"
#include "mx-base.h"
#include "mx-m-dm.h"
#include "mx-dm-m.h"
#include "mx-inlines.cc"
#include "mx-op-defs.h"
#include "oct-cmplx.h"
#include "oct-fftw.h"
#include "oct-norm.h"
#include "quit.h"
Include dependency graph for dMatrix.cc:

Defines

#define EMPTY_RETURN_CHECK(T)

Functions

F77_RET_T F77_FUNC (xilaenv, XILAENV)(const octave_idx_type &
F77_RET_T F77_FUNC (dgebal, DGEBAL)(F77_CONST_CHAR_ARG_DECL
F77_RET_T F77_FUNC (dgebak, DGEBAK)(F77_CONST_CHAR_ARG_DECL
F77_RET_T F77_FUNC (dgemm, DGEMM)(F77_CONST_CHAR_ARG_DECL
F77_RET_T F77_FUNC (dgemv, DGEMV)(F77_CONST_CHAR_ARG_DECL
F77_RET_T F77_FUNC (xddot, XDDOT)(const octave_idx_type &
F77_RET_T const double const
octave_idx_type const double
const octave_idx_type double
&F77_RET_T 
F77_FUNC (dsyrk, DSYRK)(F77_CONST_CHAR_ARG_DECL
F77_RET_T F77_FUNC (dgetrf, DGETRF)(const octave_idx_type &
F77_RET_T const
octave_idx_type double const
octave_idx_type
octave_idx_type
octave_idx_type &F77_RET_T 
F77_FUNC (dgetrs, DGETRS)(F77_CONST_CHAR_ARG_DECL
F77_RET_T F77_FUNC (dgetri, DGETRI)(const octave_idx_type &
F77_RET_T double const
octave_idx_type const
octave_idx_type double const
octave_idx_type
octave_idx_type &F77_RET_T 
F77_FUNC (dgecon, DGECON)(F77_CONST_CHAR_ARG_DECL
F77_RET_T F77_FUNC (dgelsy, DGELSY)(const octave_idx_type &
F77_RET_T const
octave_idx_type const
octave_idx_type double const
octave_idx_type double const
octave_idx_type
octave_idx_type double
octave_idx_type double const
octave_idx_type
octave_idx_type &F77_RET_T 
F77_FUNC (dgelsd, DGELSD)(const octave_idx_type &
F77_RET_T const
octave_idx_type const
octave_idx_type double const
octave_idx_type double const
octave_idx_type
octave_idx_type double
octave_idx_type double const
octave_idx_type
octave_idx_type &F77_RET_T
const octave_idx_type const
octave_idx_type double const
octave_idx_type double const
octave_idx_type double double
octave_idx_type double const
octave_idx_type
octave_idx_type
octave_idx_type &F77_RET_T 
F77_FUNC (dpotrf, DPOTRF)(F77_CONST_CHAR_ARG_DECL
F77_RET_T F77_FUNC (dpocon, DPOCON)(F77_CONST_CHAR_ARG_DECL
F77_RET_T F77_FUNC (dpotrs, DPOTRS)(F77_CONST_CHAR_ARG_DECL
F77_RET_T F77_FUNC (dtrtri, DTRTRI)(F77_CONST_CHAR_ARG_DECL
F77_RET_T F77_FUNC (dtrcon, DTRCON)(F77_CONST_CHAR_ARG_DECL
F77_RET_T F77_FUNC (dtrtrs, DTRTRS)(F77_CONST_CHAR_ARG_DECL
F77_RET_T F77_FUNC (dlartg, DLARTG)(const double &
F77_RET_T const double double
double double &F77_RET_T 
F77_FUNC (dtrsyl, DTRSYL)(F77_CONST_CHAR_ARG_DECL
F77_RET_T F77_FUNC (xdlange, XDLANGE)(F77_CONST_CHAR_ARG_DECL
Matrix real (const ComplexMatrix &a)
Matrix imag (const ComplexMatrix &a)
F77_RET_T F77_FUNC (zffti, ZFFTI)(const octave_idx_type &
F77_RET_T Complex *F77_RET_T F77_FUNC (zfftf, ZFFTF)(const octave_idx_type &
F77_RET_T Complex *F77_RET_T
Complex Complex *F77_RET_T 
F77_FUNC (zfftb, ZFFTB)(const octave_idx_type &
Matrix operator* (const ColumnVector &v, const RowVector &a)
std::ostream & operator<< (std::ostream &os, const Matrix &a)
std::istream & operator>> (std::istream &is, Matrix &a)
Matrix Givens (double x, double y)
Matrix Sylvester (const Matrix &a, const Matrix &b, const Matrix &c)
Matrix xgemm (const Matrix &a, const Matrix &b, blas_trans_type transa, blas_trans_type transb)
Matrix operator* (const Matrix &a, const Matrix &b)
Matrix min (double d, const Matrix &m)
Matrix min (const Matrix &m, double d)
Matrix min (const Matrix &a, const Matrix &b)
Matrix max (double d, const Matrix &m)
Matrix max (const Matrix &m, double d)
Matrix max (const Matrix &a, const Matrix &b)
Matrix linspace (const ColumnVector &x1, const ColumnVector &x2, octave_idx_type n)

Variables

F77_RET_T F77_CONST_CHAR_ARG_DECL
F77_RET_T const
octave_idx_type const
octave_idx_type const
octave_idx_type const
octave_idx_type
octave_idx_type
&F77_CHAR_ARG_LEN_DECL 
F77_CHAR_ARG_LEN_DECL

Define Documentation

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

Function Documentation

F77_RET_T F77_FUNC ( xilaenv  ,
XILAENV   
) const
F77_RET_T F77_FUNC ( dgebal  ,
DGEBAL   
)
F77_RET_T F77_FUNC ( dgemm  ,
DGEMM   
)
F77_RET_T F77_FUNC ( dgetrf  ,
DGETRF   
) const
F77_RET_T F77_FUNC ( dpotrs  ,
DPOTRS   
)
F77_RET_T F77_FUNC ( dtrtri  ,
DTRTRI   
)
F77_RET_T const octave_idx_type double const octave_idx_type octave_idx_type octave_idx_type& F77_RET_T F77_FUNC ( dgetrs  ,
DGETRS   
)
F77_RET_T F77_FUNC ( dtrcon  ,
DTRCON   
)
F77_RET_T F77_FUNC ( dtrtrs  ,
DTRTRS   
)
F77_RET_T F77_FUNC ( dgemv  ,
DGEMV   
)
F77_RET_T F77_FUNC ( dgetri  ,
DGETRI   
) const
F77_RET_T F77_FUNC ( dlartg  ,
DLARTG   
) const
F77_RET_T const double double double double& F77_RET_T F77_FUNC ( dtrsyl  ,
DTRSYL   
)
F77_RET_T double const octave_idx_type const octave_idx_type double const octave_idx_type octave_idx_type& F77_RET_T F77_FUNC ( dgecon  ,
DGECON   
)
F77_RET_T F77_FUNC ( xdlange  ,
XDLANGE   
)
F77_RET_T F77_FUNC ( dgebak  ,
DGEBAK   
)
F77_RET_T F77_FUNC ( xddot  ,
XDDOT   
) const
F77_RET_T F77_FUNC ( dgelsy  ,
DGELSY   
) const
F77_RET_T Complex* F77_RET_T Complex Complex* F77_RET_T F77_FUNC ( zfftb  ,
ZFFTB   
) const
F77_RET_T F77_FUNC ( zffti  ,
ZFFTI   
) const
F77_RET_T const octave_idx_type const octave_idx_type double const octave_idx_type double const octave_idx_type octave_idx_type double octave_idx_type double const octave_idx_type octave_idx_type& F77_RET_T F77_FUNC ( dgelsd  ,
DGELSD   
) const
F77_RET_T Complex* F77_RET_T F77_FUNC ( zfftf  ,
ZFFTF   
) const
F77_RET_T const double const octave_idx_type const double const octave_idx_type double& F77_RET_T F77_FUNC ( dsyrk  ,
DSYRK   
)
F77_RET_T const octave_idx_type const octave_idx_type double const octave_idx_type double const octave_idx_type octave_idx_type double octave_idx_type double const octave_idx_type octave_idx_type& F77_RET_T const octave_idx_type const octave_idx_type double const octave_idx_type double const octave_idx_type double double octave_idx_type double const octave_idx_type octave_idx_type octave_idx_type& F77_RET_T F77_FUNC ( dpotrf  ,
DPOTRF   
)
F77_RET_T F77_FUNC ( dpocon  ,
DPOCON   
)
Matrix Givens ( double  x,
double  y 
)
Matrix imag ( const ComplexMatrix a  ) 
Matrix linspace ( const ColumnVector x1,
const ColumnVector x2,
octave_idx_type  n 
)
Matrix max ( const Matrix m,
double  d 
)
Matrix max ( double  d,
const Matrix m 
)
Matrix max ( const Matrix a,
const Matrix b 
)
Matrix min ( const Matrix a,
const Matrix b 
)
Matrix min ( double  d,
const Matrix m 
)
Matrix min ( const Matrix m,
double  d 
)
Matrix operator* ( const Matrix a,
const Matrix b 
)
Matrix operator* ( const ColumnVector v,
const RowVector a 
)
std::ostream& operator<< ( std::ostream &  os,
const Matrix a 
)
std::istream& operator>> ( std::istream &  is,
Matrix a 
)
Matrix real ( const ComplexMatrix a  ) 
Matrix Sylvester ( const Matrix a,
const Matrix b,
const Matrix c 
)
Matrix xgemm ( const Matrix a,
const Matrix b,
blas_trans_type  transa,
blas_trans_type  transb 
)

Variable Documentation

F77_RET_T const octave_idx_type const octave_idx_type const double const octave_idx_type double double& F77_CHAR_ARG_LEN_DECL
F77_RET_T const double double double double& F77_RET_T F77_CONST_CHAR_ARG_DECL
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines