GNU Octave  4.4.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
xdiv.cc File Reference
#include <cassert>
#include "Array-util.h"
#include "CMatrix.h"
#include "dMatrix.h"
#include "CNDArray.h"
#include "dNDArray.h"
#include "fCMatrix.h"
#include "fMatrix.h"
#include "fCNDArray.h"
#include "fNDArray.h"
#include "oct-cmplx.h"
#include "dDiagMatrix.h"
#include "fDiagMatrix.h"
#include "CDiagMatrix.h"
#include "fCDiagMatrix.h"
#include "lo-array-errwarn.h"
#include "quit.h"
#include "error.h"
#include "xdiv.h"
Include dependency graph for xdiv.cc:

Go to the source code of this file.

Macros

#define INSTANTIATE_MX_DIV_CONFORM(T1, T2)   template bool mx_div_conform (const T1&, const T2&)
 
#define INSTANTIATE_MX_LEFTDIV_CONFORM(T1, T2)   template bool mx_leftdiv_conform (const T1&, const T2&, blas_trans_type)
 

Functions

template<typename MT , typename DMT >
MT dmdm_div_impl (const MT &a, const DMT &d)
 
template<typename MT , typename DMT >
MT dmdm_leftdiv_impl (const DMT &d, const MT &a)
 
template<typename MT , typename DMT >
MT dmm_leftdiv_impl (const DMT &d, const MT &a)
 
template<typename MT , typename DMT >
MT mdm_div_impl (const MT &a, const DMT &d)
 
template<typename T1 , typename T2 >
bool mx_div_conform (const T1 &a, const T2 &b)
 
template bool mx_div_conform (const Matrix &, const Matrix &)
 
template bool mx_div_conform (const Matrix &, const ComplexMatrix &)
 
template bool mx_div_conform (const ComplexMatrix &, const Matrix &)
 
template bool mx_div_conform (const ComplexMatrix &, const ComplexMatrix &)
 
template bool mx_div_conform (const FloatMatrix &, const FloatMatrix &)
 
template bool mx_div_conform (const FloatMatrix &, const FloatComplexMatrix &)
 
template bool mx_div_conform (const FloatComplexMatrix &, const FloatMatrix &)
 
template bool mx_div_conform (const FloatComplexMatrix &, const FloatComplexMatrix &)
 
template<typename T1 , typename T2 >
bool mx_leftdiv_conform (const T1 &a, const T2 &b, blas_trans_type blas_trans)
 
template bool mx_leftdiv_conform (const Matrix &, const Matrix &, blas_trans_type)
 
template bool mx_leftdiv_conform (const Matrix &, const ComplexMatrix &, blas_trans_type)
 
template bool mx_leftdiv_conform (const ComplexMatrix &, const Matrix &, blas_trans_type)
 
template bool mx_leftdiv_conform (const ComplexMatrix &, const ComplexMatrix &, blas_trans_type)
 
template bool mx_leftdiv_conform (const FloatMatrix &, const FloatMatrix &, blas_trans_type)
 
template bool mx_leftdiv_conform (const FloatMatrix &, const FloatComplexMatrix &, blas_trans_type)
 
template bool mx_leftdiv_conform (const FloatComplexMatrix &, const FloatMatrix &, blas_trans_type)
 
template bool mx_leftdiv_conform (const FloatComplexMatrix &, const FloatComplexMatrix &, blas_trans_type)
 
static void solve_singularity_warning (double rcond)
 
static void solve_singularity_warning (float rcond)
 
Matrix x_el_div (double a, const Matrix &b)
 
ComplexMatrix x_el_div (double a, const ComplexMatrix &b)
 
ComplexMatrix x_el_div (const Complex a, const Matrix &b)
 
ComplexMatrix x_el_div (const Complex a, const ComplexMatrix &b)
 
NDArray x_el_div (double a, const NDArray &b)
 
ComplexNDArray x_el_div (double a, const ComplexNDArray &b)
 
ComplexNDArray x_el_div (const Complex a, const NDArray &b)
 
ComplexNDArray x_el_div (const Complex a, const ComplexNDArray &b)
 
FloatMatrix x_el_div (float a, const FloatMatrix &b)
 
FloatComplexMatrix x_el_div (float a, const FloatComplexMatrix &b)
 
FloatComplexMatrix x_el_div (const FloatComplex a, const FloatMatrix &b)
 
FloatComplexMatrix x_el_div (const FloatComplex a, const FloatComplexMatrix &b)
 
FloatNDArray x_el_div (float a, const FloatNDArray &b)
 
FloatComplexNDArray x_el_div (float a, const FloatComplexNDArray &b)
 
FloatComplexNDArray x_el_div (const FloatComplex a, const FloatNDArray &b)
 
FloatComplexNDArray x_el_div (const FloatComplex a, const FloatComplexNDArray &b)
 
Matrix xdiv (const Matrix &a, const Matrix &b, MatrixType &typ)
 
ComplexMatrix xdiv (const Matrix &a, const ComplexMatrix &b, MatrixType &typ)
 
ComplexMatrix xdiv (const ComplexMatrix &a, const Matrix &b, MatrixType &typ)
 
ComplexMatrix xdiv (const ComplexMatrix &a, const ComplexMatrix &b, MatrixType &typ)
 
FloatMatrix xdiv (const FloatMatrix &a, const FloatMatrix &b, MatrixType &typ)
 
FloatComplexMatrix xdiv (const FloatMatrix &a, const FloatComplexMatrix &b, MatrixType &typ)
 
FloatComplexMatrix xdiv (const FloatComplexMatrix &a, const FloatMatrix &b, MatrixType &typ)
 
FloatComplexMatrix xdiv (const FloatComplexMatrix &a, const FloatComplexMatrix &b, MatrixType &typ)
 
Matrix xdiv (const Matrix &a, const DiagMatrix &b)
 
ComplexMatrix xdiv (const ComplexMatrix &a, const DiagMatrix &b)
 
ComplexMatrix xdiv (const ComplexMatrix &a, const ComplexDiagMatrix &b)
 
FloatMatrix xdiv (const FloatMatrix &a, const FloatDiagMatrix &b)
 
FloatComplexMatrix xdiv (const FloatComplexMatrix &a, const FloatDiagMatrix &b)
 
FloatComplexMatrix xdiv (const FloatComplexMatrix &a, const FloatComplexDiagMatrix &b)
 
DiagMatrix xdiv (const DiagMatrix &a, const DiagMatrix &b)
 
ComplexDiagMatrix xdiv (const ComplexDiagMatrix &a, const DiagMatrix &b)
 
ComplexDiagMatrix xdiv (const ComplexDiagMatrix &a, const ComplexDiagMatrix &b)
 
FloatDiagMatrix xdiv (const FloatDiagMatrix &a, const FloatDiagMatrix &b)
 
FloatComplexDiagMatrix xdiv (const FloatComplexDiagMatrix &a, const FloatDiagMatrix &b)
 
FloatComplexDiagMatrix xdiv (const FloatComplexDiagMatrix &a, const FloatComplexDiagMatrix &b)
 
Matrix xleftdiv (const Matrix &a, const Matrix &b, MatrixType &typ, blas_trans_type transt)
 
ComplexMatrix xleftdiv (const Matrix &a, const ComplexMatrix &b, MatrixType &typ, blas_trans_type transt)
 
ComplexMatrix xleftdiv (const ComplexMatrix &a, const Matrix &b, MatrixType &typ, blas_trans_type transt)
 
ComplexMatrix xleftdiv (const ComplexMatrix &a, const ComplexMatrix &b, MatrixType &typ, blas_trans_type transt)
 
FloatMatrix xleftdiv (const FloatMatrix &a, const FloatMatrix &b, MatrixType &typ, blas_trans_type transt)
 
FloatComplexMatrix xleftdiv (const FloatMatrix &a, const FloatComplexMatrix &b, MatrixType &typ, blas_trans_type transt)
 
FloatComplexMatrix xleftdiv (const FloatComplexMatrix &a, const FloatMatrix &b, MatrixType &typ, blas_trans_type transt)
 
FloatComplexMatrix xleftdiv (const FloatComplexMatrix &a, const FloatComplexMatrix &b, MatrixType &typ, blas_trans_type transt)
 
Matrix xleftdiv (const DiagMatrix &a, const Matrix &b)
 
ComplexMatrix xleftdiv (const DiagMatrix &a, const ComplexMatrix &b)
 
ComplexMatrix xleftdiv (const ComplexDiagMatrix &a, const ComplexMatrix &b)
 
FloatMatrix xleftdiv (const FloatDiagMatrix &a, const FloatMatrix &b)
 
FloatComplexMatrix xleftdiv (const FloatDiagMatrix &a, const FloatComplexMatrix &b)
 
FloatComplexMatrix xleftdiv (const FloatComplexDiagMatrix &a, const FloatComplexMatrix &b)
 
DiagMatrix xleftdiv (const DiagMatrix &a, const DiagMatrix &b)
 
ComplexDiagMatrix xleftdiv (const DiagMatrix &a, const ComplexDiagMatrix &b)
 
ComplexDiagMatrix xleftdiv (const ComplexDiagMatrix &a, const ComplexDiagMatrix &b)
 
FloatDiagMatrix xleftdiv (const FloatDiagMatrix &a, const FloatDiagMatrix &b)
 
FloatComplexDiagMatrix xleftdiv (const FloatDiagMatrix &a, const FloatComplexDiagMatrix &b)
 
FloatComplexDiagMatrix xleftdiv (const FloatComplexDiagMatrix &a, const FloatComplexDiagMatrix &b)
 

Macro Definition Documentation

◆ INSTANTIATE_MX_DIV_CONFORM

#define INSTANTIATE_MX_DIV_CONFORM (   T1,
  T2 
)    template bool mx_div_conform (const T1&, const T2&)

Definition at line 102 of file xdiv.cc.

◆ INSTANTIATE_MX_LEFTDIV_CONFORM

#define INSTANTIATE_MX_LEFTDIV_CONFORM (   T1,
  T2 
)    template bool mx_leftdiv_conform (const T1&, const T2&, blas_trans_type)

Definition at line 76 of file xdiv.cc.

Function Documentation

◆ dmdm_div_impl()

template<typename MT , typename DMT >
MT dmdm_div_impl ( const MT &  a,
const DMT &  d 
)

Definition at line 863 of file xdiv.cc.

References a, d, i, k, min(), mx_div_conform(), and x.

Referenced by xdiv().

◆ dmdm_leftdiv_impl()

template<typename MT , typename DMT >
MT dmdm_leftdiv_impl ( const DMT &  d,
const MT &  a 
)

Definition at line 938 of file xdiv.cc.

References a, blas_no_trans, d, i, k, min(), mx_leftdiv_conform(), and x.

Referenced by xleftdiv().

◆ dmm_leftdiv_impl()

template<typename MT , typename DMT >
MT dmm_leftdiv_impl ( const DMT &  d,
const MT &  a 
)

Definition at line 783 of file xdiv.cc.

References a, blas_no_trans, d, i, k, mx_leftdiv_conform(), and x.

Referenced by xleftdiv().

◆ mdm_div_impl()

template<typename MT , typename DMT >
MT mdm_div_impl ( const MT &  a,
const DMT &  d 
)

Definition at line 700 of file xdiv.cc.

References a, d, i, mx_div_conform(), and x.

Referenced by xdiv().

◆ mx_div_conform() [1/9]

template<typename T1 , typename T2 >
bool mx_div_conform ( const T1 &  a,
const T2 &  b 
)

Definition at line 86 of file xdiv.cc.

References a, a_nc, a_nr, b, b_nc, b_nr, and octave::err_nonconformant().

Referenced by dmdm_div_impl(), mdm_div_impl(), and xdiv().

◆ mx_div_conform() [2/9]

template bool mx_div_conform ( const Matrix ,
const Matrix  
)

◆ mx_div_conform() [3/9]

template bool mx_div_conform ( const Matrix ,
const ComplexMatrix  
)

◆ mx_div_conform() [4/9]

template bool mx_div_conform ( const ComplexMatrix ,
const Matrix  
)

◆ mx_div_conform() [5/9]

template bool mx_div_conform ( const ComplexMatrix ,
const ComplexMatrix  
)

◆ mx_div_conform() [6/9]

template bool mx_div_conform ( const FloatMatrix ,
const FloatMatrix  
)

◆ mx_div_conform() [7/9]

template bool mx_div_conform ( const FloatMatrix ,
const FloatComplexMatrix  
)

◆ mx_div_conform() [8/9]

template bool mx_div_conform ( const FloatComplexMatrix ,
const FloatMatrix  
)

◆ mx_div_conform() [9/9]

template bool mx_div_conform ( const FloatComplexMatrix ,
const FloatComplexMatrix  
)

◆ mx_leftdiv_conform() [1/9]

template<typename T1 , typename T2 >
bool mx_leftdiv_conform ( const T1 &  a,
const T2 &  b,
blas_trans_type  blas_trans 
)

Definition at line 59 of file xdiv.cc.

References a, a_nc, a_nr, b, b_nc, b_nr, blas_no_trans, blas_trans, and octave::err_nonconformant().

Referenced by dmdm_leftdiv_impl(), dmm_leftdiv_impl(), and xleftdiv().

◆ mx_leftdiv_conform() [2/9]

template bool mx_leftdiv_conform ( const Matrix ,
const Matrix ,
blas_trans_type   
)

◆ mx_leftdiv_conform() [3/9]

template bool mx_leftdiv_conform ( const Matrix ,
const ComplexMatrix ,
blas_trans_type   
)

◆ mx_leftdiv_conform() [4/9]

template bool mx_leftdiv_conform ( const ComplexMatrix ,
const Matrix ,
blas_trans_type   
)

◆ mx_leftdiv_conform() [5/9]

template bool mx_leftdiv_conform ( const ComplexMatrix ,
const ComplexMatrix ,
blas_trans_type   
)

◆ mx_leftdiv_conform() [6/9]

template bool mx_leftdiv_conform ( const FloatMatrix ,
const FloatMatrix ,
blas_trans_type   
)

◆ mx_leftdiv_conform() [7/9]

template bool mx_leftdiv_conform ( const FloatMatrix ,
const FloatComplexMatrix ,
blas_trans_type   
)

◆ mx_leftdiv_conform() [8/9]

template bool mx_leftdiv_conform ( const FloatComplexMatrix ,
const FloatMatrix ,
blas_trans_type   
)

◆ mx_leftdiv_conform() [9/9]

template bool mx_leftdiv_conform ( const FloatComplexMatrix ,
const FloatComplexMatrix ,
blas_trans_type   
)

◆ solve_singularity_warning() [1/2]

static void solve_singularity_warning ( double  rcond)
static

Definition at line 52 of file xdiv.cc.

References octave::warn_singular_matrix().

Referenced by xdiv(), and xleftdiv().

◆ solve_singularity_warning() [2/2]

static void solve_singularity_warning ( float  rcond)
static

Definition at line 396 of file xdiv.cc.

References octave::warn_singular_matrix().

◆ x_el_div() [1/16]

Matrix x_el_div ( double  a,
const Matrix b 
)

Definition at line 197 of file xdiv.cc.

References a, b, i, and result.

◆ x_el_div() [2/16]

ComplexMatrix x_el_div ( double  a,
const ComplexMatrix b 
)

Definition at line 215 of file xdiv.cc.

References a, b, i, and result.

◆ x_el_div() [3/16]

ComplexMatrix x_el_div ( const Complex  a,
const Matrix b 
)

Definition at line 233 of file xdiv.cc.

References a, b, i, and result.

◆ x_el_div() [4/16]

ComplexMatrix x_el_div ( const Complex  a,
const ComplexMatrix b 
)

Definition at line 251 of file xdiv.cc.

References a, b, i, and result.

◆ x_el_div() [5/16]

NDArray x_el_div ( double  a,
const NDArray b 
)

Definition at line 278 of file xdiv.cc.

References a, b, i, and result.

◆ x_el_div() [6/16]

ComplexNDArray x_el_div ( double  a,
const ComplexNDArray b 
)

Definition at line 292 of file xdiv.cc.

References a, b, i, and result.

◆ x_el_div() [7/16]

ComplexNDArray x_el_div ( const Complex  a,
const NDArray b 
)

Definition at line 306 of file xdiv.cc.

References a, b, i, and result.

◆ x_el_div() [8/16]

ComplexNDArray x_el_div ( const Complex  a,
const ComplexNDArray b 
)

Definition at line 320 of file xdiv.cc.

References a, b, i, and result.

◆ x_el_div() [9/16]

FloatMatrix x_el_div ( float  a,
const FloatMatrix b 
)

Definition at line 498 of file xdiv.cc.

References a, b, i, and result.

◆ x_el_div() [10/16]

FloatComplexMatrix x_el_div ( float  a,
const FloatComplexMatrix b 
)

Definition at line 516 of file xdiv.cc.

References a, b, i, and result.

◆ x_el_div() [11/16]

FloatComplexMatrix x_el_div ( const FloatComplex  a,
const FloatMatrix b 
)

Definition at line 534 of file xdiv.cc.

References a, b, i, and result.

◆ x_el_div() [12/16]

FloatComplexMatrix x_el_div ( const FloatComplex  a,
const FloatComplexMatrix b 
)

Definition at line 552 of file xdiv.cc.

References a, b, i, and result.

◆ x_el_div() [13/16]

FloatNDArray x_el_div ( float  a,
const FloatNDArray b 
)

Definition at line 579 of file xdiv.cc.

References a, b, i, and result.

◆ x_el_div() [14/16]

FloatComplexNDArray x_el_div ( float  a,
const FloatComplexNDArray b 
)

Definition at line 593 of file xdiv.cc.

References a, b, i, and result.

◆ x_el_div() [15/16]

FloatComplexNDArray x_el_div ( const FloatComplex  a,
const FloatNDArray b 
)

Definition at line 607 of file xdiv.cc.

References a, b, i, and result.

◆ x_el_div() [16/16]

FloatComplexNDArray x_el_div ( const FloatComplex  a,
const FloatComplexNDArray b 
)

Definition at line 621 of file xdiv.cc.

References a, b, i, and result.

◆ xdiv() [1/20]

Matrix xdiv ( const Matrix a,
const Matrix b,
MatrixType typ 
)

Definition at line 121 of file xdiv.cc.

References a, b, blas_trans, mx_div_conform(), result, and solve_singularity_warning().

◆ xdiv() [2/20]

ComplexMatrix xdiv ( const Matrix a,
const ComplexMatrix b,
MatrixType typ 
)

Definition at line 138 of file xdiv.cc.

References a, b, blas_trans, mx_div_conform(), result, and solve_singularity_warning().

◆ xdiv() [3/20]

ComplexMatrix xdiv ( const ComplexMatrix a,
const Matrix b,
MatrixType typ 
)

Definition at line 155 of file xdiv.cc.

References a, b, blas_trans, mx_div_conform(), result, and solve_singularity_warning().

◆ xdiv() [4/20]

ComplexMatrix xdiv ( const ComplexMatrix a,
const ComplexMatrix b,
MatrixType typ 
)

Definition at line 172 of file xdiv.cc.

References a, b, blas_trans, mx_div_conform(), result, and solve_singularity_warning().

◆ xdiv() [5/20]

FloatMatrix xdiv ( const FloatMatrix a,
const FloatMatrix b,
MatrixType typ 
)

Definition at line 422 of file xdiv.cc.

References a, b, blas_trans, mx_div_conform(), result, and solve_singularity_warning().

◆ xdiv() [6/20]

FloatComplexMatrix xdiv ( const FloatMatrix a,
const FloatComplexMatrix b,
MatrixType typ 
)

Definition at line 439 of file xdiv.cc.

References a, b, blas_trans, mx_div_conform(), result, and solve_singularity_warning().

◆ xdiv() [7/20]

FloatComplexMatrix xdiv ( const FloatComplexMatrix a,
const FloatMatrix b,
MatrixType typ 
)

Definition at line 456 of file xdiv.cc.

References a, b, blas_trans, mx_div_conform(), result, and solve_singularity_warning().

◆ xdiv() [8/20]

FloatComplexMatrix xdiv ( const FloatComplexMatrix a,
const FloatComplexMatrix b,
MatrixType typ 
)

Definition at line 473 of file xdiv.cc.

References a, b, blas_trans, mx_div_conform(), result, and solve_singularity_warning().

◆ xdiv() [9/20]

Matrix xdiv ( const Matrix a,
const DiagMatrix b 
)

Definition at line 744 of file xdiv.cc.

References a, b, and mdm_div_impl().

◆ xdiv() [10/20]

ComplexMatrix xdiv ( const ComplexMatrix a,
const DiagMatrix b 
)

Definition at line 749 of file xdiv.cc.

References a, b, and mdm_div_impl().

◆ xdiv() [11/20]

ComplexMatrix xdiv ( const ComplexMatrix a,
const ComplexDiagMatrix b 
)

Definition at line 754 of file xdiv.cc.

References a, b, and mdm_div_impl().

◆ xdiv() [12/20]

FloatMatrix xdiv ( const FloatMatrix a,
const FloatDiagMatrix b 
)

Definition at line 768 of file xdiv.cc.

References a, b, and mdm_div_impl().

◆ xdiv() [13/20]

FloatComplexMatrix xdiv ( const FloatComplexMatrix a,
const FloatDiagMatrix b 
)

Definition at line 773 of file xdiv.cc.

References a, b, and mdm_div_impl().

◆ xdiv() [14/20]

FloatComplexMatrix xdiv ( const FloatComplexMatrix a,
const FloatComplexDiagMatrix b 
)

Definition at line 778 of file xdiv.cc.

References a, b, and mdm_div_impl().

◆ xdiv() [15/20]

DiagMatrix xdiv ( const DiagMatrix a,
const DiagMatrix b 
)

Definition at line 899 of file xdiv.cc.

References a, b, and dmdm_div_impl().

◆ xdiv() [16/20]

ComplexDiagMatrix xdiv ( const ComplexDiagMatrix a,
const DiagMatrix b 
)

Definition at line 904 of file xdiv.cc.

References a, b, and dmdm_div_impl().

◆ xdiv() [17/20]

ComplexDiagMatrix xdiv ( const ComplexDiagMatrix a,
const ComplexDiagMatrix b 
)

Definition at line 909 of file xdiv.cc.

References a, b, and dmdm_div_impl().

◆ xdiv() [18/20]

FloatDiagMatrix xdiv ( const FloatDiagMatrix a,
const FloatDiagMatrix b 
)

Definition at line 923 of file xdiv.cc.

References a, b, and dmdm_div_impl().

◆ xdiv() [19/20]

FloatComplexDiagMatrix xdiv ( const FloatComplexDiagMatrix a,
const FloatDiagMatrix b 
)

Definition at line 928 of file xdiv.cc.

References a, b, and dmdm_div_impl().

◆ xdiv() [20/20]

Definition at line 933 of file xdiv.cc.

References a, b, and dmdm_div_impl().

◆ xleftdiv() [1/20]

Matrix xleftdiv ( const Matrix a,
const Matrix b,
MatrixType typ,
blas_trans_type  transt 
)

Definition at line 344 of file xdiv.cc.

References a, b, mx_leftdiv_conform(), and solve_singularity_warning().

◆ xleftdiv() [2/20]

ComplexMatrix xleftdiv ( const Matrix a,
const ComplexMatrix b,
MatrixType typ,
blas_trans_type  transt 
)

Definition at line 357 of file xdiv.cc.

References a, b, mx_leftdiv_conform(), and solve_singularity_warning().

◆ xleftdiv() [3/20]

ComplexMatrix xleftdiv ( const ComplexMatrix a,
const Matrix b,
MatrixType typ,
blas_trans_type  transt 
)

Definition at line 371 of file xdiv.cc.

References a, b, mx_leftdiv_conform(), and solve_singularity_warning().

◆ xleftdiv() [4/20]

ComplexMatrix xleftdiv ( const ComplexMatrix a,
const ComplexMatrix b,
MatrixType typ,
blas_trans_type  transt 
)

Definition at line 384 of file xdiv.cc.

References a, b, mx_leftdiv_conform(), and solve_singularity_warning().

◆ xleftdiv() [5/20]

FloatMatrix xleftdiv ( const FloatMatrix a,
const FloatMatrix b,
MatrixType typ,
blas_trans_type  transt 
)

Definition at line 645 of file xdiv.cc.

References a, b, mx_leftdiv_conform(), and solve_singularity_warning().

◆ xleftdiv() [6/20]

FloatComplexMatrix xleftdiv ( const FloatMatrix a,
const FloatComplexMatrix b,
MatrixType typ,
blas_trans_type  transt 
)

Definition at line 658 of file xdiv.cc.

References a, b, mx_leftdiv_conform(), and solve_singularity_warning().

◆ xleftdiv() [7/20]

FloatComplexMatrix xleftdiv ( const FloatComplexMatrix a,
const FloatMatrix b,
MatrixType typ,
blas_trans_type  transt 
)

Definition at line 672 of file xdiv.cc.

References a, b, mx_leftdiv_conform(), and solve_singularity_warning().

◆ xleftdiv() [8/20]

FloatComplexMatrix xleftdiv ( const FloatComplexMatrix a,
const FloatComplexMatrix b,
MatrixType typ,
blas_trans_type  transt 
)

Definition at line 685 of file xdiv.cc.

References a, b, mx_leftdiv_conform(), and solve_singularity_warning().

◆ xleftdiv() [9/20]

Matrix xleftdiv ( const DiagMatrix a,
const Matrix b 
)

Definition at line 822 of file xdiv.cc.

References a, b, and dmm_leftdiv_impl().

◆ xleftdiv() [10/20]

ComplexMatrix xleftdiv ( const DiagMatrix a,
const ComplexMatrix b 
)

Definition at line 827 of file xdiv.cc.

References a, b, and dmm_leftdiv_impl().

◆ xleftdiv() [11/20]

ComplexMatrix xleftdiv ( const ComplexDiagMatrix a,
const ComplexMatrix b 
)

Definition at line 832 of file xdiv.cc.

References a, b, and dmm_leftdiv_impl().

◆ xleftdiv() [12/20]

FloatMatrix xleftdiv ( const FloatDiagMatrix a,
const FloatMatrix b 
)

Definition at line 846 of file xdiv.cc.

References a, b, and dmm_leftdiv_impl().

◆ xleftdiv() [13/20]

FloatComplexMatrix xleftdiv ( const FloatDiagMatrix a,
const FloatComplexMatrix b 
)

Definition at line 851 of file xdiv.cc.

References a, b, and dmm_leftdiv_impl().

◆ xleftdiv() [14/20]

FloatComplexMatrix xleftdiv ( const FloatComplexDiagMatrix a,
const FloatComplexMatrix b 
)

Definition at line 856 of file xdiv.cc.

References a, b, and dmm_leftdiv_impl().

◆ xleftdiv() [15/20]

DiagMatrix xleftdiv ( const DiagMatrix a,
const DiagMatrix b 
)

Definition at line 974 of file xdiv.cc.

References a, b, and dmdm_leftdiv_impl().

◆ xleftdiv() [16/20]

ComplexDiagMatrix xleftdiv ( const DiagMatrix a,
const ComplexDiagMatrix b 
)

Definition at line 979 of file xdiv.cc.

References a, b, and dmdm_leftdiv_impl().

◆ xleftdiv() [17/20]

ComplexDiagMatrix xleftdiv ( const ComplexDiagMatrix a,
const ComplexDiagMatrix b 
)

Definition at line 984 of file xdiv.cc.

References a, b, and dmdm_leftdiv_impl().

◆ xleftdiv() [18/20]

FloatDiagMatrix xleftdiv ( const FloatDiagMatrix a,
const FloatDiagMatrix b 
)

Definition at line 998 of file xdiv.cc.

References a, b, and dmdm_leftdiv_impl().

◆ xleftdiv() [19/20]

FloatComplexDiagMatrix xleftdiv ( const FloatDiagMatrix a,
const FloatComplexDiagMatrix b 
)

Definition at line 1003 of file xdiv.cc.

References a, b, and dmdm_leftdiv_impl().

◆ xleftdiv() [20/20]

FloatComplexDiagMatrix xleftdiv ( const FloatComplexDiagMatrix a,
const FloatComplexDiagMatrix b 
)

Definition at line 1008 of file xdiv.cc.

References a, b, and dmdm_leftdiv_impl().