GNU Octave  4.0.0
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
mx-op-defs.h File Reference
#include "lo-array-gripes.h"
#include "mx-op-decl.h"
#include "mx-inlines.cc"
Include dependency graph for mx-op-defs.h:

Go to the source code of this file.

Macros

#define DMDM_BIN_OP(R, OP, DM1, DM2, F)
 
#define DMDM_BIN_OPS(R, DM1, DM2)
 
#define DMM_BIN_OP(R, OP, DM, M, OPEQ, PREOP)
 
#define DMM_BIN_OPS(R, DM, M, R_ZERO)
 
#define DMM_MULTIPLY_OP(R, DM, M, R_ZERO)
 
#define DMS_BIN_OP(R, OP, DM, S)
 
#define DMS_BIN_OPS(R, DM, S)
 
#define MDM_BIN_OP(R, OP, M, DM, OPEQ)
 
#define MDM_BIN_OPS(R, M, DM, R_ZERO)
 
#define MDM_MULTIPLY_OP(R, M, DM, R_ZERO)
 
#define MINMAX_FCNS(T, S)
 
#define MM_BIN_OP(R, OP, M1, M2, F)
 
#define MM_BIN_OPS(R, M1, M2)
 
#define MM_BOOL_OP(F, OP, M1, M2)
 
#define MM_BOOL_OPS(M1, M2)
 
#define MM_CMP_OP(F, OP, M1, M2)
 
#define MM_CMP_OPS(M1, M2)
 
#define MNANCHK(m, MT)
 
#define MPM_BIN_OPS(R, M, PM)   MPM_MULTIPLY_OP(M, PM);
 
#define MPM_MULTIPLY_OP(M, PM)
 
#define MS_BIN_OP(R, OP, M, S, F)
 
#define MS_BIN_OPS(R, M, S)
 
#define MS_BOOL_OP(F, OP, M, S)
 
#define MS_BOOL_OPS(M, S)
 
#define MS_CMP_OP(F, OP, M, S)
 
#define MS_CMP_OPS(M, S)
 
#define NDND_BIN_OP(R, OP, ND1, ND2, F)
 
#define NDND_BIN_OPS(R, ND1, ND2)
 
#define NDND_BOOL_OP(F, OP, ND1, ND2)
 
#define NDND_BOOL_OPS(ND1, ND2)
 
#define NDND_CMP_OP(F, OP, ND1, ND2)
 
#define NDND_CMP_OPS(ND1, ND2)
 
#define NDND_MAPPER_BODY(R, NAME)
 
#define NDND_MINMAX_FCN(FCN, OP, T, S)
 
#define NDS_BIN_OP(R, OP, ND, S, F)
 
#define NDS_BIN_OPS(R, ND, S)
 
#define NDS_BOOL_OP(F, OP, ND, S)
 
#define NDS_BOOL_OPS(ND, S)
 
#define NDS_CMP_OP(F, OP, ND, S)
 
#define NDS_CMP_OPS(ND, S)
 
#define NDS_MINMAX_FCN(FCN, OP, T, S)
 
#define PMM_BIN_OPS(R, PM, M)   PMM_MULTIPLY_OP(PM, M);
 
#define PMM_MULTIPLY_OP(PM, M)
 
#define SDM_BIN_OP(R, OP, S, DM)
 
#define SDM_BIN_OPS(R, S, DM)   SDM_BIN_OP (R, *, S, DM)
 
#define SM_BIN_OP(R, OP, S, M, F)
 
#define SM_BIN_OPS(R, S, M)
 
#define SM_BOOL_OP(F, OP, S, M)
 
#define SM_BOOL_OPS(S, M)
 
#define SM_CMP_OP(F, OP, S, M)
 
#define SM_CMP_OPS(S, M)
 
#define SNANCHK(s)
 
#define SND_BIN_OP(R, OP, S, ND, F)
 
#define SND_BIN_OPS(R, S, ND)
 
#define SND_BOOL_OP(F, OP, S, ND)
 
#define SND_BOOL_OPS(S, ND)
 
#define SND_CMP_OP(F, OP, S, ND)
 
#define SND_CMP_OPS(S, ND)
 
#define SND_MINMAX_FCN(FCN, OP, T, S)
 
#define SV_BIN_OP(R, F, OP, S, V)
 
#define SV_BIN_OPS(R, S, V)
 
#define VS_BIN_OP(R, F, OP, V, S)
 
#define VS_BIN_OPS(R, V, S)
 
#define VV_BIN_OP(R, F, OP, V1, V2)
 
#define VV_BIN_OPS(R, V1, V2)
 

Macro Definition Documentation

#define DMDM_BIN_OP (   R,
  OP,
  DM1,
  DM2,
  F 
)
Value:
R \
OP (const DM1& dm1, const DM2& dm2) \
{ \
R r; \
\
octave_idx_type dm1_nr = dm1.rows (); \
octave_idx_type dm1_nc = dm1.cols (); \
\
octave_idx_type dm2_nr = dm2.rows (); \
octave_idx_type dm2_nc = dm2.cols (); \
\
if (dm1_nr != dm2_nr || dm1_nc != dm2_nc) \
gripe_nonconformant (#OP, dm1_nr, dm1_nc, dm2_nr, dm2_nc); \
else \
{ \
r.resize (dm1_nr, dm1_nc); \
\
if (dm1_nr > 0 && dm1_nc > 0) \
F (dm1.length (), r.fortran_vec (), dm1.data (), dm2.data ()); \
} \
\
return r; \
}
void gripe_nonconformant(const char *op, octave_idx_type op1_len, octave_idx_type op2_len)
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 537 of file mx-op-defs.h.

#define DMDM_BIN_OPS (   R,
  DM1,
  DM2 
)
Value:
DMDM_BIN_OP (R, operator +, DM1, DM2, mx_inline_add) \
DMDM_BIN_OP (R, operator -, DM1, DM2, mx_inline_sub) \
ComplexColumnVector product(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:149
#define DMDM_BIN_OP(R, OP, DM1, DM2, F)
Definition: mx-op-defs.h:537
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:84
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:83
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:82

Definition at line 562 of file mx-op-defs.h.

#define DMM_BIN_OP (   R,
  OP,
  DM,
  M,
  OPEQ,
  PREOP 
)
Value:
R \
OP (const DM& dm, const M& m) \
{ \
R r; \
\
octave_idx_type dm_nr = dm.rows (); \
octave_idx_type dm_nc = dm.cols (); \
\
octave_idx_type m_nr = m.rows (); \
octave_idx_type m_nc = m.cols (); \
\
if (dm_nr != m_nr || dm_nc != m_nc) \
gripe_nonconformant (#OP, dm_nr, dm_nc, m_nr, m_nc); \
else \
{ \
if (m_nr > 0 && m_nc > 0) \
{ \
r = R (PREOP m); \
\
octave_idx_type len = dm.length (); \
\
for (octave_idx_type i = 0; i < len; i++) \
r.elem (i, i) OPEQ dm.elem (i, i); \
} \
else \
r.resize (m_nr, m_nc); \
} \
\
return r; \
}
void gripe_nonconformant(const char *op, octave_idx_type op1_len, octave_idx_type op2_len)
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49

Definition at line 464 of file mx-op-defs.h.

#define DMM_BIN_OPS (   R,
  DM,
  M,
  R_ZERO 
)
Value:
DMM_BIN_OP (R, operator +, DM, M, +=, ) \
DMM_BIN_OP (R, operator -, DM, M, +=, -) \
DMM_MULTIPLY_OP (R, DM, M, R_ZERO)
#define DMM_MULTIPLY_OP(R, DM, M, R_ZERO)
Definition: mx-op-defs.h:496
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
#define DMM_BIN_OP(R, OP, DM, M, OPEQ, PREOP)
Definition: mx-op-defs.h:464

Definition at line 530 of file mx-op-defs.h.

#define DMM_MULTIPLY_OP (   R,
  DM,
  M,
  R_ZERO 
)

Definition at line 496 of file mx-op-defs.h.

#define DMS_BIN_OP (   R,
  OP,
  DM,
 
)
Value:
R \
operator OP (const DM& dm, const S& s) \
{ \
R r (dm.rows (), dm.cols ()); \
\
for (octave_idx_type i = 0; i < dm.length (); i++) \
r.dgxelem (i) = dm.dgelem (i) OP s; \
\
return r; \
}

Definition at line 374 of file mx-op-defs.h.

#define DMS_BIN_OPS (   R,
  DM,
 
)
Value:
DMS_BIN_OP (R, *, DM, S) \
DMS_BIN_OP (R, /, DM, S)
#define DMS_BIN_OP(R, OP, DM, S)
Definition: mx-op-defs.h:374

Definition at line 386 of file mx-op-defs.h.

#define MDM_BIN_OP (   R,
  OP,
  M,
  DM,
  OPEQ 
)
Value:
R \
OP (const M& m, const DM& dm) \
{ \
R r; \
\
octave_idx_type m_nr = m.rows (); \
octave_idx_type m_nc = m.cols (); \
\
octave_idx_type dm_nr = dm.rows (); \
octave_idx_type dm_nc = dm.cols (); \
\
if (m_nr != dm_nr || m_nc != dm_nc) \
gripe_nonconformant (#OP, m_nr, m_nc, dm_nr, dm_nc); \
else \
{ \
r.resize (m_nr, m_nc); \
\
if (m_nr > 0 && m_nc > 0) \
{ \
r = R (m); \
\
octave_idx_type len = dm.length (); \
\
for (octave_idx_type i = 0; i < len; i++) \
r.elem (i, i) OPEQ dm.elem (i, i); \
} \
} \
\
return r; \
}
void gripe_nonconformant(const char *op, octave_idx_type op1_len, octave_idx_type op2_len)
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49

Definition at line 392 of file mx-op-defs.h.

#define MDM_BIN_OPS (   R,
  M,
  DM,
  R_ZERO 
)
Value:
MDM_BIN_OP (R, operator +, M, DM, +=) \
MDM_BIN_OP (R, operator -, M, DM, -=) \
MDM_MULTIPLY_OP (R, M, DM, R_ZERO)
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
#define MDM_BIN_OP(R, OP, M, DM, OPEQ)
Definition: mx-op-defs.h:392
#define MDM_MULTIPLY_OP(R, M, DM, R_ZERO)
Definition: mx-op-defs.h:424

Definition at line 457 of file mx-op-defs.h.

#define MDM_MULTIPLY_OP (   R,
  M,
  DM,
  R_ZERO 
)

Definition at line 424 of file mx-op-defs.h.

#define MINMAX_FCNS (   T,
 
)
Value:
SND_MINMAX_FCN (min, <, T, S) \
NDS_MINMAX_FCN (min, <, T, S) \
SND_MINMAX_FCN (max, >, T, S) \
NDS_MINMAX_FCN (max, >, T, S) \
#define NDND_MINMAX_FCN(FCN, OP, T, S)
Definition: mx-op-defs.h:583
#define NDS_MINMAX_FCN(FCN, OP, T, S)
Definition: mx-op-defs.h:576
charNDArray max(char d, const charNDArray &m)
Definition: chNDArray.cc:233
#define SND_MINMAX_FCN(FCN, OP, T, S)
Definition: mx-op-defs.h:569
charNDArray min(char d, const charNDArray &m)
Definition: chNDArray.cc:210

Definition at line 590 of file mx-op-defs.h.

#define MM_BIN_OP (   R,
  OP,
  M1,
  M2,
  F 
)
Value:
R \
OP (const M1& m1, const M2& m2) \
{ \
return do_mm_binary_op<R::element_type, M1::element_type, M2::element_type> (m1, m2, F, F, F, #OP); \
}
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 173 of file mx-op-defs.h.

#define MM_BIN_OPS (   R,
  M1,
  M2 
)
Value:
MM_BIN_OP (R, operator +, M1, M2, mx_inline_add) \
MM_BIN_OP (R, operator -, M1, M2, mx_inline_sub) \
ComplexColumnVector product(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:149
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:84
#define MM_BIN_OP(R, OP, M1, M2, F)
Definition: mx-op-defs.h:173
ComplexColumnVector quotient(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:149
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:83
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:82
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:85

Definition at line 180 of file mx-op-defs.h.

#define MM_BOOL_OP (   F,
  OP,
  M1,
  M2 
)
Value:
F (const M1& m1, const M2& m2) \
{ \
MNANCHK (m1, M1::element_type); \
MNANCHK (m2, M2::element_type); \
return do_mm_binary_op<bool, M1::element_type, M2::element_type> (m1, m2, OP, OP, OP, #F); \
}
#define MNANCHK(m, MT)
Definition: mx-op-defs.h:36
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 201 of file mx-op-defs.h.

#define MM_BOOL_OPS (   M1,
  M2 
)
Value:
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
void mx_inline_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:159
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
void mx_inline_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:160
#define MM_BOOL_OP(F, OP, M1, M2)
Definition: mx-op-defs.h:201

Definition at line 210 of file mx-op-defs.h.

#define MM_CMP_OP (   F,
  OP,
  M1,
  M2 
)
Value:
F (const M1& m1, const M2& m2) \
{ \
return do_mm_binary_op<bool, M1::element_type, M2::element_type> (m1, m2, OP, OP, OP, #F); \
}
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 186 of file mx-op-defs.h.

#define MM_CMP_OPS (   M1,
  M2 
)
Value:
void mx_inline_le(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:112
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_ne(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:116
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:115
#define MM_CMP_OP(F, OP, M1, M2)
Definition: mx-op-defs.h:186
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_ge(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:114
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_gt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:113
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_lt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:111
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 193 of file mx-op-defs.h.

#define MNANCHK (   m,
  MT 
)
Value:
if (do_mx_check (m, mx_inline_any_nan<MT>)) \
bool do_mx_check(const Array< T > &a, bool(*op)(size_t, const T *) throw())
Definition: mx-inlines.cc:451
void gripe_nan_to_logical_conversion(void)

Definition at line 36 of file mx-op-defs.h.

#define MPM_BIN_OPS (   R,
  M,
  PM 
)    MPM_MULTIPLY_OP(M, PM);

Definition at line 634 of file mx-op-defs.h.

#define MPM_MULTIPLY_OP (   M,
  PM 
)
Value:
M operator * (const M& x, const PM& p) \
{ \
octave_idx_type nr = x.rows (); \
octave_idx_type nc = x.columns (); \
M result; \
if (p.rows () != nc) \
gripe_nonconformant ("operator *", nr, nc, p.rows (), p.columns ()); \
else \
result = x.index (idx_vector::colon, p.col_perm_vec ()); \
\
return result; \
}
void gripe_nonconformant(const char *op, octave_idx_type op1_len, octave_idx_type op2_len)
static const idx_vector colon
Definition: idx-vector.h:492
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
ComplexColumnVector operator*(const ComplexMatrix &m, const ColumnVector &a)
Definition: CColVector.cc:326
F77_RET_T const double * x

Definition at line 617 of file mx-op-defs.h.

#define MS_BIN_OP (   R,
  OP,
  M,
  S,
  F 
)
Value:
R \
OP (const M& m, const S& s) \
{ \
return do_ms_binary_op<R::element_type, M::element_type, S> (m, s, F); \
}
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 87 of file mx-op-defs.h.

#define MS_BIN_OPS (   R,
  M,
 
)
Value:
MS_BIN_OP (R, operator +, M, S, mx_inline_add) \
MS_BIN_OP (R, operator -, M, S, mx_inline_sub) \
MS_BIN_OP (R, operator *, M, S, mx_inline_mul) \
MS_BIN_OP (R, operator /, M, S, mx_inline_div)
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:84
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:83
#define MS_BIN_OP(R, OP, M, S, F)
Definition: mx-op-defs.h:87
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:82
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:85

Definition at line 94 of file mx-op-defs.h.

#define MS_BOOL_OP (   F,
  OP,
  M,
 
)
Value:
F (const M& m, const S& s) \
{ \
MNANCHK (m, M::element_type); \
SNANCHK (s); \
return do_ms_binary_op<bool, M::element_type, S> (m, s, OP); \
}
#define SNANCHK(s)
Definition: mx-op-defs.h:32
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
#define MNANCHK(m, MT)
Definition: mx-op-defs.h:36
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 115 of file mx-op-defs.h.

#define MS_BOOL_OPS (   M,
 
)
Value:
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
#define MS_BOOL_OP(F, OP, M, S)
Definition: mx-op-defs.h:115
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
void mx_inline_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:159
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
void mx_inline_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:160

Definition at line 124 of file mx-op-defs.h.

#define MS_CMP_OP (   F,
  OP,
  M,
 
)
Value:
F (const M& m, const S& s) \
{ \
return do_ms_binary_op<bool, M::element_type, S> (m, s, OP); \
}
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 100 of file mx-op-defs.h.

#define MS_CMP_OPS (   M,
 
)
Value:
void mx_inline_le(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:112
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_ne(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:116
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:115
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_ge(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:114
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_gt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:113
#define MS_CMP_OP(F, OP, M, S)
Definition: mx-op-defs.h:100
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_lt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:111
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 107 of file mx-op-defs.h.

#define NDND_BIN_OP (   R,
  OP,
  ND1,
  ND2,
  F 
)
Value:
R \
OP (const ND1& m1, const ND2& m2) \
{ \
return do_mm_binary_op<R::element_type, ND1::element_type, ND2::element_type> (m1, m2, F, F, F, #OP); \
}
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 310 of file mx-op-defs.h.

#define NDND_BIN_OPS (   R,
  ND1,
  ND2 
)
Value:
NDND_BIN_OP (R, operator +, ND1, ND2, mx_inline_add) \
NDND_BIN_OP (R, operator -, ND1, ND2, mx_inline_sub) \
ComplexColumnVector product(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:149
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:84
ComplexColumnVector quotient(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:149
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:83
#define NDND_BIN_OP(R, OP, ND1, ND2, F)
Definition: mx-op-defs.h:310
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:82
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:85

Definition at line 317 of file mx-op-defs.h.

#define NDND_BOOL_OP (   F,
  OP,
  ND1,
  ND2 
)
Value:
F (const ND1& m1, const ND2& m2) \
{ \
MNANCHK (m1, ND1::element_type); \
MNANCHK (m2, ND2::element_type); \
return do_mm_binary_op<bool, ND1::element_type, ND2::element_type> (m1, m2, OP, OP, OP, #F); \
}
#define MNANCHK(m, MT)
Definition: mx-op-defs.h:36
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 338 of file mx-op-defs.h.

#define NDND_BOOL_OPS (   ND1,
  ND2 
)
Value:
void mx_inline_or_not(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:164
boolNDArray mx_el_and_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:137
boolNDArray mx_el_not_or(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:137
boolNDArray mx_el_not_and(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:137
#define NDND_BOOL_OP(F, OP, ND1, ND2)
Definition: mx-op-defs.h:338
void mx_inline_not_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:162
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
void mx_inline_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:159
void mx_inline_not_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:161
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
boolNDArray mx_el_or_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:137
void mx_inline_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:160
void mx_inline_and_not(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:163

Definition at line 347 of file mx-op-defs.h.

#define NDND_CMP_OP (   F,
  OP,
  ND1,
  ND2 
)
Value:
F (const ND1& m1, const ND2& m2) \
{ \
return do_mm_binary_op<bool, ND1::element_type, ND2::element_type> (m1, m2, OP, OP, OP, #F); \
}
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 323 of file mx-op-defs.h.

#define NDND_CMP_OPS (   ND1,
  ND2 
)
Value:
void mx_inline_le(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:112
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_ne(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:116
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:115
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_ge(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:114
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_gt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:113
#define NDND_CMP_OP(F, OP, ND1, ND2)
Definition: mx-op-defs.h:323
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_lt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:111
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 330 of file mx-op-defs.h.

#define NDND_MAPPER_BODY (   R,
  NAME 
)
Value:
R retval (dims ()); \
octave_idx_type n = numel (); \
for (octave_idx_type i = 0; i < n; i++) \
retval.xelem (i) = NAME (elem (i)); \
return retval;
Definition: oct-parse.h:98
static int elem
Definition: __contourc__.cc:49

Definition at line 637 of file mx-op-defs.h.

#define NDND_MINMAX_FCN (   FCN,
  OP,
  T,
 
)
Value:
FCN (const T& a, const T& b) \
{ \
return do_mm_binary_op<T::element_type, T::element_type, T::element_type> (a, b, mx_inline_x##FCN, mx_inline_x##FCN, mx_inline_x##FCN, #FCN); \
}
Definition: oct-parse.h:133

Definition at line 583 of file mx-op-defs.h.

#define NDS_BIN_OP (   R,
  OP,
  ND,
  S,
  F 
)
Value:
R \
OP (const ND& m, const S& s) \
{ \
return do_ms_binary_op<R::element_type, ND::element_type, S> (m, s, F); \
}
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 216 of file mx-op-defs.h.

#define NDS_BIN_OPS (   R,
  ND,
 
)
Value:
NDS_BIN_OP (R, operator +, ND, S, mx_inline_add) \
NDS_BIN_OP (R, operator -, ND, S, mx_inline_sub) \
NDS_BIN_OP (R, operator *, ND, S, mx_inline_mul) \
NDS_BIN_OP (R, operator /, ND, S, mx_inline_div)
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:84
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:83
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:82
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:85
#define NDS_BIN_OP(R, OP, ND, S, F)
Definition: mx-op-defs.h:216

Definition at line 223 of file mx-op-defs.h.

#define NDS_BOOL_OP (   F,
  OP,
  ND,
 
)
Value:
F (const ND& m, const S& s) \
{ \
MNANCHK (m, ND::element_type); \
SNANCHK (s); \
return do_ms_binary_op<bool, ND::element_type, S> (m, s, OP); \
}
#define SNANCHK(s)
Definition: mx-op-defs.h:32
#define MNANCHK(m, MT)
Definition: mx-op-defs.h:36
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 244 of file mx-op-defs.h.

#define NDS_BOOL_OPS (   ND,
 
)
Value:
void mx_inline_or_not(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:164
#define NDS_BOOL_OP(F, OP, ND, S)
Definition: mx-op-defs.h:244
boolNDArray mx_el_and_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:137
boolNDArray mx_el_not_or(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:137
boolNDArray mx_el_not_and(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:137
void mx_inline_not_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:162
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
void mx_inline_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:159
void mx_inline_not_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:161
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
boolNDArray mx_el_or_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:137
void mx_inline_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:160
void mx_inline_and_not(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:163

Definition at line 253 of file mx-op-defs.h.

#define NDS_CMP_OP (   F,
  OP,
  ND,
 
)
Value:
F (const ND& m, const S& s) \
{ \
return do_ms_binary_op<bool, ND::element_type, S> (m, s, OP); \
}
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 229 of file mx-op-defs.h.

#define NDS_CMP_OPS (   ND,
 
)
Value:
void mx_inline_le(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:112
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
#define NDS_CMP_OP(F, OP, ND, S)
Definition: mx-op-defs.h:229
void mx_inline_ne(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:116
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:115
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_ge(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:114
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_gt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:113
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_lt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:111
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 236 of file mx-op-defs.h.

#define NDS_MINMAX_FCN (   FCN,
  OP,
  T,
 
)
Value:
FCN (const T& m, S d) \
{ \
return do_ms_binary_op<T::element_type, T::element_type, S> (m, d, mx_inline_x##FCN); \
}
Definition: oct-parse.h:133
F77_RET_T const double const double double * d

Definition at line 576 of file mx-op-defs.h.

#define PMM_BIN_OPS (   R,
  PM,
  M 
)    PMM_MULTIPLY_OP(PM, M);

Definition at line 631 of file mx-op-defs.h.

#define PMM_MULTIPLY_OP (   PM,
  M 
)
Value:
M operator * (const PM& p, const M& x) \
{ \
octave_idx_type nr = x.rows (); \
octave_idx_type nc = x.columns (); \
M result; \
if (p.columns () != nr) \
gripe_nonconformant ("operator *", p.rows (), p.columns (), nr, nc); \
else \
{ \
result = M (nr, nc); \
result.assign (p.col_perm_vec (), idx_vector::colon, x); \
} \
\
return result; \
}
void gripe_nonconformant(const char *op, octave_idx_type op1_len, octave_idx_type op2_len)
static const idx_vector colon
Definition: idx-vector.h:492
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
ComplexColumnVector operator*(const ComplexMatrix &m, const ColumnVector &a)
Definition: CColVector.cc:326
F77_RET_T const double * x

Definition at line 600 of file mx-op-defs.h.

#define SDM_BIN_OP (   R,
  OP,
  S,
  DM 
)
Value:
R \
operator OP (const S& s, const DM& dm) \
{ \
R r (dm.rows (), dm.cols ()); \
\
for (octave_idx_type i = 0; i < dm.length (); i++) \
r.dgxelem (i) = s OP dm.dgelem (i); \
\
return r; \
}

Definition at line 357 of file mx-op-defs.h.

#define SDM_BIN_OPS (   R,
  S,
  DM 
)    SDM_BIN_OP (R, *, S, DM)

Definition at line 369 of file mx-op-defs.h.

#define SM_BIN_OP (   R,
  OP,
  S,
  M,
  F 
)
Value:
R \
OP (const S& s, const M& m) \
{ \
return do_sm_binary_op<R::element_type, S, M::element_type> (s, m, F); \
}
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 130 of file mx-op-defs.h.

#define SM_BIN_OPS (   R,
  S,
  M 
)
Value:
SM_BIN_OP (R, operator +, S, M, mx_inline_add) \
SM_BIN_OP (R, operator -, S, M, mx_inline_sub) \
SM_BIN_OP (R, operator *, S, M, mx_inline_mul) \
SM_BIN_OP (R, operator /, S, M, mx_inline_div)
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:84
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:83
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:82
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:85
#define SM_BIN_OP(R, OP, S, M, F)
Definition: mx-op-defs.h:130

Definition at line 137 of file mx-op-defs.h.

#define SM_BOOL_OP (   F,
  OP,
  S,
  M 
)
Value:
F (const S& s, const M& m) \
{ \
SNANCHK (s); \
MNANCHK (m, M::element_type); \
return do_sm_binary_op<bool, S, M::element_type> (s, m, OP); \
}
#define SNANCHK(s)
Definition: mx-op-defs.h:32
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
#define MNANCHK(m, MT)
Definition: mx-op-defs.h:36
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 158 of file mx-op-defs.h.

#define SM_BOOL_OPS (   S,
  M 
)
Value:
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
void mx_inline_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:159
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
void mx_inline_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:160
#define SM_BOOL_OP(F, OP, S, M)
Definition: mx-op-defs.h:158

Definition at line 167 of file mx-op-defs.h.

#define SM_CMP_OP (   F,
  OP,
  S,
  M 
)
Value:
F (const S& s, const M& m) \
{ \
return do_sm_binary_op<bool, S, M::element_type> (s, m, OP); \
}
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 143 of file mx-op-defs.h.

#define SM_CMP_OPS (   S,
  M 
)
Value:
void mx_inline_le(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:112
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_ne(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:116
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:115
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_ge(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:114
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_gt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:113
#define SM_CMP_OP(F, OP, S, M)
Definition: mx-op-defs.h:143
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_lt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:111
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 150 of file mx-op-defs.h.

#define SNANCHK (   s)
Value:
if (xisnan (s)) \
bool xisnan(double x)
Definition: lo-mappers.cc:144
void gripe_nan_to_logical_conversion(void)

Definition at line 32 of file mx-op-defs.h.

#define SND_BIN_OP (   R,
  OP,
  S,
  ND,
  F 
)
Value:
R \
OP (const S& s, const ND& m) \
{ \
return do_sm_binary_op<R::element_type, S, ND::element_type> (s, m, F); \
}
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 263 of file mx-op-defs.h.

#define SND_BIN_OPS (   R,
  S,
  ND 
)
Value:
SND_BIN_OP (R, operator +, S, ND, mx_inline_add) \
SND_BIN_OP (R, operator -, S, ND, mx_inline_sub) \
SND_BIN_OP (R, operator *, S, ND, mx_inline_mul) \
SND_BIN_OP (R, operator /, S, ND, mx_inline_div)
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:84
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:83
#define SND_BIN_OP(R, OP, S, ND, F)
Definition: mx-op-defs.h:263
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:82
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:85

Definition at line 270 of file mx-op-defs.h.

#define SND_BOOL_OP (   F,
  OP,
  S,
  ND 
)
Value:
F (const S& s, const ND& m) \
{ \
SNANCHK (s); \
MNANCHK (m, ND::element_type); \
return do_sm_binary_op<bool, S, ND::element_type> (s, m, OP); \
}
#define SNANCHK(s)
Definition: mx-op-defs.h:32
#define MNANCHK(m, MT)
Definition: mx-op-defs.h:36
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 291 of file mx-op-defs.h.

#define SND_BOOL_OPS (   S,
  ND 
)
Value:
void mx_inline_or_not(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:164
boolNDArray mx_el_and_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:137
boolNDArray mx_el_not_or(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:137
boolNDArray mx_el_not_and(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:137
#define SND_BOOL_OP(F, OP, S, ND)
Definition: mx-op-defs.h:291
void mx_inline_not_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:162
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
void mx_inline_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:159
void mx_inline_not_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:161
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
boolNDArray mx_el_or_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:137
void mx_inline_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:160
void mx_inline_and_not(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:163

Definition at line 300 of file mx-op-defs.h.

#define SND_CMP_OP (   F,
  OP,
  S,
  ND 
)
Value:
F (const S& s, const ND& m) \
{ \
return do_sm_binary_op<bool, S, ND::element_type> (s, m, OP); \
}
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 276 of file mx-op-defs.h.

#define SND_CMP_OPS (   S,
  ND 
)
Value:
void mx_inline_le(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:112
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_ne(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:116
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:115
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_ge(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:114
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_gt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:113
#define SND_CMP_OP(F, OP, S, ND)
Definition: mx-op-defs.h:276
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
void mx_inline_lt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:111
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 283 of file mx-op-defs.h.

#define SND_MINMAX_FCN (   FCN,
  OP,
  T,
 
)
Value:
FCN (S d, const T& m) \
{ \
return do_sm_binary_op<T::element_type, S, T::element_type> (d, m, mx_inline_x##FCN); \
}
Definition: oct-parse.h:133
F77_RET_T const double const double double * d

Definition at line 569 of file mx-op-defs.h.

#define SV_BIN_OP (   R,
  F,
  OP,
  S,
  V 
)
Value:
F (const S& s, const V& v) \
{ \
return do_sm_binary_op<R::element_type, S, V::element_type> (s, v, OP); \
}
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type double * V
Definition: CmplxGEPBAL.cc:49
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 57 of file mx-op-defs.h.

#define SV_BIN_OPS (   R,
  S,
  V 
)
Value:
SV_BIN_OP (R, operator +, mx_inline_add, S, V) \
SV_BIN_OP (R, operator -, mx_inline_sub, S, V) \
SV_BIN_OP (R, operator *, mx_inline_mul, S, V) \
SV_BIN_OP (R, operator /, mx_inline_div, S, V)
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:84
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:83
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type double * V
Definition: CmplxGEPBAL.cc:49
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:82
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:85
#define SV_BIN_OP(R, F, OP, S, V)
Definition: mx-op-defs.h:57

Definition at line 64 of file mx-op-defs.h.

#define VS_BIN_OP (   R,
  F,
  OP,
  V,
 
)
Value:
F (const V& v, const S& s) \
{ \
return do_ms_binary_op<R::element_type, V::element_type, S> (v, s, OP); \
}
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type double * V
Definition: CmplxGEPBAL.cc:49
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 42 of file mx-op-defs.h.

#define VS_BIN_OPS (   R,
  V,
 
)
Value:
VS_BIN_OP (R, operator +, mx_inline_add, V, S) \
VS_BIN_OP (R, operator -, mx_inline_sub, V, S) \
VS_BIN_OP (R, operator *, mx_inline_mul, V, S) \
VS_BIN_OP (R, operator /, mx_inline_div, V, S)
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:84
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:83
#define VS_BIN_OP(R, F, OP, V, S)
Definition: mx-op-defs.h:42
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type double * V
Definition: CmplxGEPBAL.cc:49
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:82
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:85

Definition at line 49 of file mx-op-defs.h.

#define VV_BIN_OP (   R,
  F,
  OP,
  V1,
  V2 
)
Value:
F (const V1& v1, const V2& v2) \
{ \
return do_mm_binary_op<R::element_type, V1::element_type, V2::element_type> (v1, v2, OP, OP, OP, #F); \
}
const octave_base_value const Array< octave_idx_type > &ra_idx octave_int16_scalar & v1
const octave_char_matrix & v2
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:527

Definition at line 72 of file mx-op-defs.h.

#define VV_BIN_OPS (   R,
  V1,
  V2 
)
Value:
VV_BIN_OP (R, operator +, mx_inline_add, V1, V2) \
VV_BIN_OP (R, operator -, mx_inline_sub, V1, V2) \
ComplexColumnVector product(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:149
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:84
ComplexColumnVector quotient(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:149
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:83
#define VV_BIN_OP(R, F, OP, V1, V2)
Definition: mx-op-defs.h:72
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:82
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:85

Definition at line 79 of file mx-op-defs.h.