GNU Octave  4.4.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
mx-op-defs.h File Reference
#include "octave-config.h"
#include "lo-array-errwarn.h"
#include "mx-op-decl.h"
#include "mx-inlines.cc"
Include dependency graph for mx-op-defs.h:
This graph shows which files directly or indirectly include this file:

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

◆ DMDM_BIN_OP

#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) \
octave::err_nonconformant (#OP, dm1_nr, dm1_nc, dm2_nr, dm2_nc); \
\
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; \
}
if(nargin< 2) print_usage()
Definition: cellfun.cc:407
void err_nonconformant(const char *op, octave_idx_type op1_len, octave_idx_type op2_len)

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

◆ DMDM_BIN_OPS

#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) \
DMDM_BIN_OP (R, product, DM1, DM2, mx_inline_mul)
ComplexColumnVector product(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:150
#define DMDM_BIN_OP(R, OP, DM1, DM2, F)
Definition: mx-op-defs.h:533
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:108
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:107
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:106

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

◆ DMM_BIN_OP

#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) \
octave::err_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; \
}
for(octave_idx_type n=0;n< hcv.numel();n++)
Definition: graphics.cc:10831
if(nargin< 2) print_usage()
Definition: cellfun.cc:407
void err_nonconformant(const char *op, octave_idx_type op1_len, octave_idx_type op2_len)
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
for i
Definition: data.cc:5264

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

◆ DMM_BIN_OPS

#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)
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
#define DMM_BIN_OP(R, OP, DM, M, OPEQ, PREOP)
Definition: mx-op-defs.h:462

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

◆ DMM_MULTIPLY_OP

#define DMM_MULTIPLY_OP (   R,
  DM,
  M,
  R_ZERO 
)
Value:
operator * (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_nc != m_nr) \
octave::err_nonconformant ("operator *", dm_nr, dm_nc, m_nr, m_nc); \
\
r = R (dm_nr, m_nc); \
R::element_type *rd = r.fortran_vec (); \
const M::element_type *md = m.data (); \
const DM::element_type *dd = dm.data (); \
\
octave_idx_type len = dm.length (); \
for (octave_idx_type i = 0; i < m_nc; i++) \
{ \
mx_inline_mul (len, rd, md, dd); \
rd += len; md += m_nr; \
mx_inline_fill (dm_nr - len, rd, R_ZERO); \
rd += dm_nr - len; \
} \
\
return r; \
}
octave_idx_type rows(void) const
Definition: Array.h:404
if(nargin< 2) print_usage()
Definition: cellfun.cc:407
ComplexColumnVector operator*(const ComplexMatrix &m, const ColumnVector &a)
Definition: CColVector.cc:291
void err_nonconformant(const char *op, octave_idx_type op1_len, octave_idx_type op2_len)
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
for i
Definition: data.cc:5264

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

◆ DMS_BIN_OP

#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; \
}
for(octave_idx_type n=0;n< hcv.numel();n++)
Definition: graphics.cc:10831
s
Definition: file-io.cc:2729
for i
Definition: data.cc:5264

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

◆ DMS_BIN_OPS

#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:376

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

◆ MDM_BIN_OP

#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) \
octave::err_nonconformant (#OP, m_nr, m_nc, dm_nr, dm_nc); \
\
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; \
}
for(octave_idx_type n=0;n< hcv.numel();n++)
Definition: graphics.cc:10831
if(nargin< 2) print_usage()
Definition: cellfun.cc:407
void err_nonconformant(const char *op, octave_idx_type op1_len, octave_idx_type op2_len)
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
for i
Definition: data.cc:5264

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

◆ MDM_BIN_OPS

#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)
#define MDM_BIN_OP(R, OP, M, DM, OPEQ)
Definition: mx-op-defs.h:394
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M

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

◆ MDM_MULTIPLY_OP

#define MDM_MULTIPLY_OP (   R,
  M,
  DM,
  R_ZERO 
)
Value:
operator * (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_nc != dm_nr) \
octave::err_nonconformant ("operator *", m_nr, m_nc, dm_nr, dm_nc); \
\
r = R (m_nr, dm_nc); \
R::element_type *rd = r.fortran_vec (); \
const M::element_type *md = m.data (); \
const DM::element_type *dd = dm.data (); \
\
octave_idx_type len = dm.length (); \
for (octave_idx_type i = 0; i < len; i++) \
{ \
mx_inline_mul (m_nr, rd, md, dd[i]); \
rd += m_nr; md += m_nr; \
} \
mx_inline_fill (m_nr * (dm_nc - len), rd, R_ZERO); \
\
return r; \
}
octave_idx_type rows(void) const
Definition: Array.h:404
if(nargin< 2) print_usage()
Definition: cellfun.cc:407
ComplexColumnVector operator*(const ComplexMatrix &m, const ColumnVector &a)
Definition: CColVector.cc:291
void err_nonconformant(const char *op, octave_idx_type op1_len, octave_idx_type op2_len)
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
for i
Definition: data.cc:5264

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

◆ MINMAX_FCNS

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

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

◆ MM_BIN_OP

#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:756

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

◆ MM_BIN_OPS

#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) \
MM_BIN_OP (R, product, M1, M2, mx_inline_mul) \
MM_BIN_OP (R, quotient, M1, M2, mx_inline_div)
ComplexColumnVector product(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:150
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:108
#define MM_BIN_OP(R, OP, M1, M2, F)
Definition: mx-op-defs.h:175
ComplexColumnVector quotient(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:150
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:107
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:106
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109

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

◆ MM_BOOL_OP

#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); \
}
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:756

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

◆ MM_BOOL_OPS

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

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

◆ MM_CMP_OP

#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:756

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

◆ MM_CMP_OPS

#define MM_CMP_OPS (   M1,
  M2 
)
Value:
MM_CMP_OP (mx_el_le, mx_inline_le, M1, M2) \
MM_CMP_OP (mx_el_ge, mx_inline_ge, M1, M2) \
MM_CMP_OP (mx_el_gt, mx_inline_gt, M1, M2) \
MM_CMP_OP (mx_el_eq, mx_inline_eq, M1, M2) \
MM_CMP_OP (mx_el_ne, mx_inline_ne, M1, M2)
void mx_inline_le(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:151
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_ne(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:155
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:154
#define MM_CMP_OP(F, OP, M1, M2)
Definition: mx-op-defs.h:188
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_ge(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:153
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_gt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:152
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_lt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:150
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89

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

◆ MNANCHK

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

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

◆ MPM_BIN_OPS

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

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

◆ MPM_MULTIPLY_OP

#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) \
octave::err_nonconformant ("operator *", nr, nc, p.rows (), p.columns ()); \
\
result = x.index (idx_vector::colon, p.col_perm_vec ()); \
\
return result; \
}
static const idx_vector colon
Definition: idx-vector.h:498
ComplexColumnVector operator*(const ComplexMatrix &m, const ColumnVector &a)
Definition: CColVector.cc:291
void err_nonconformant(const char *op, octave_idx_type op1_len, octave_idx_type op2_len)
With real return the complex result
Definition: data.cc:3260
p
Definition: lu.cc:138
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
F77_RET_T const F77_REAL const F77_REAL F77_REAL &F77_RET_T const F77_DBLE const F77_DBLE F77_DBLE &F77_RET_T const F77_DBLE F77_DBLE &F77_RET_T const F77_REAL F77_REAL &F77_RET_T const F77_DBLE * x

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

◆ MS_BIN_OP

#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); \
}
s
Definition: file-io.cc:2729
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:756

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

◆ MS_BIN_OPS

#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)
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:108
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:107
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
#define MS_BIN_OP(R, OP, M, S, F)
Definition: mx-op-defs.h:89
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:106
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109

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

◆ MS_BOOL_OP

#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); \
}
s
Definition: file-io.cc:2729
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:756

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

◆ MS_BOOL_OPS

#define MS_BOOL_OPS (   M,
 
)
Value:
MS_BOOL_OP (mx_el_or, mx_inline_or, M, S)
#define MS_BOOL_OP(F, OP, M, S)
Definition: mx-op-defs.h:117
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86
void mx_inline_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:215
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
void mx_inline_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:216

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

◆ MS_CMP_OP

#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); \
}
s
Definition: file-io.cc:2729
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:756

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

◆ MS_CMP_OPS

#define MS_CMP_OPS (   M,
 
)
Value:
MS_CMP_OP (mx_el_le, mx_inline_le, M, S) \
MS_CMP_OP (mx_el_ge, mx_inline_ge, M, S) \
MS_CMP_OP (mx_el_gt, mx_inline_gt, M, S) \
MS_CMP_OP (mx_el_eq, mx_inline_eq, M, S) \
MS_CMP_OP (mx_el_ne, mx_inline_ne, M, S)
void mx_inline_le(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:151
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_ne(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:155
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:154
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_ge(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:153
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_gt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:152
#define MS_CMP_OP(F, OP, M, S)
Definition: mx-op-defs.h:102
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_lt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:150
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89

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

◆ NDND_BIN_OP

#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:756

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

◆ NDND_BIN_OPS

#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) \
NDND_BIN_OP (R, product, ND1, ND2, mx_inline_mul) \
NDND_BIN_OP (R, quotient, ND1, ND2, mx_inline_div)
ComplexColumnVector product(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:150
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:108
ComplexColumnVector quotient(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:150
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:107
#define NDND_BIN_OP(R, OP, ND1, ND2, F)
Definition: mx-op-defs.h:312
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:106
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109

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

◆ NDND_BOOL_OP

#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); \
}
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:756

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

◆ NDND_BOOL_OPS

#define NDND_BOOL_OPS (   ND1,
  ND2 
)
Value:
NDND_BOOL_OP (mx_el_or, mx_inline_or, ND1, ND2) \
NDND_BOOL_OP (mx_el_not_and, mx_inline_not_and, ND1, ND2) \
NDND_BOOL_OP (mx_el_not_or, mx_inline_not_or, ND1, ND2) \
NDND_BOOL_OP (mx_el_and_not, mx_inline_and_not, ND1, ND2) \
NDND_BOOL_OP (mx_el_or_not, mx_inline_or_not, ND1, ND2)
void mx_inline_or_not(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:220
boolNDArray mx_el_and_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:135
boolNDArray mx_el_not_or(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:135
boolNDArray mx_el_not_and(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:135
#define NDND_BOOL_OP(F, OP, ND1, ND2)
Definition: mx-op-defs.h:340
void mx_inline_not_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:218
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86
void mx_inline_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:215
void mx_inline_not_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:217
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86
boolNDArray mx_el_or_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:135
void mx_inline_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:216
void mx_inline_and_not(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:219

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

◆ NDND_CMP_OP

#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:756

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

◆ NDND_CMP_OPS

#define NDND_CMP_OPS (   ND1,
  ND2 
)
Value:
NDND_CMP_OP (mx_el_le, mx_inline_le, ND1, ND2) \
NDND_CMP_OP (mx_el_ge, mx_inline_ge, ND1, ND2) \
NDND_CMP_OP (mx_el_gt, mx_inline_gt, ND1, ND2) \
NDND_CMP_OP (mx_el_eq, mx_inline_eq, ND1, ND2) \
NDND_CMP_OP (mx_el_ne, mx_inline_ne, ND1, ND2)
void mx_inline_le(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:151
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_ne(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:155
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:154
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_ge(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:153
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_gt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:152
#define NDND_CMP_OP(F, OP, ND1, ND2)
Definition: mx-op-defs.h:325
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_lt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:150
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89

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

◆ NDND_MAPPER_BODY

#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;
static int elem
Definition: __contourc__.cc:47
octave_value retval
Definition: data.cc:6246
the exceeded dimensions are set to if fewer subscripts than dimensions are the exceeding dimensions are merged into the final requested dimension For consider the following dims
Definition: sub2ind.cc:255
T::size_type numel(const T &str)
Definition: oct-string.cc:61
for i
Definition: data.cc:5264

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

◆ NDND_MINMAX_FCN

#define NDND_MINMAX_FCN (   FCN,
  OP,
  T,
 
)
Value:
T \
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); \
}
calling an anonymous function involves an overhead quite comparable to the overhead of an m file function Passing a handle to a built in function is because the interpreter is not involved in the internal loop For a
Definition: cellfun.cc:400
b
Definition: cellfun.cc:400

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

◆ NDS_BIN_OP

#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); \
}
s
Definition: file-io.cc:2729
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:756

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

◆ NDS_BIN_OPS

#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:108
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:107
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:106
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109
#define NDS_BIN_OP(R, OP, ND, S, F)
Definition: mx-op-defs.h:218

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

◆ NDS_BOOL_OP

#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); \
}
s
Definition: file-io.cc:2729
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:756

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

◆ NDS_BOOL_OPS

#define NDS_BOOL_OPS (   ND,
 
)
Value:
NDS_BOOL_OP (mx_el_or, mx_inline_or, ND, S) \
NDS_BOOL_OP (mx_el_not_and, mx_inline_not_and, ND, S) \
NDS_BOOL_OP (mx_el_not_or, mx_inline_not_or, ND, S) \
NDS_BOOL_OP (mx_el_and_not, mx_inline_and_not, ND, S) \
NDS_BOOL_OP (mx_el_or_not, mx_inline_or_not, ND, S)
void mx_inline_or_not(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:220
#define NDS_BOOL_OP(F, OP, ND, S)
Definition: mx-op-defs.h:246
boolNDArray mx_el_and_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:135
boolNDArray mx_el_not_or(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:135
boolNDArray mx_el_not_and(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:135
void mx_inline_not_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:218
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86
void mx_inline_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:215
void mx_inline_not_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:217
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86
boolNDArray mx_el_or_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:135
void mx_inline_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:216
void mx_inline_and_not(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:219

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

◆ NDS_CMP_OP

#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); \
}
s
Definition: file-io.cc:2729
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:756

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

◆ NDS_CMP_OPS

#define NDS_CMP_OPS (   ND,
 
)
Value:
NDS_CMP_OP (mx_el_le, mx_inline_le, ND, S) \
NDS_CMP_OP (mx_el_ge, mx_inline_ge, ND, S) \
NDS_CMP_OP (mx_el_gt, mx_inline_gt, ND, S) \
NDS_CMP_OP (mx_el_eq, mx_inline_eq, ND, S) \
NDS_CMP_OP (mx_el_ne, mx_inline_ne, ND, S)
void mx_inline_le(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:151
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
#define NDS_CMP_OP(F, OP, ND, S)
Definition: mx-op-defs.h:231
void mx_inline_ne(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:155
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:154
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_ge(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:153
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_gt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:152
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_lt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:150
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89

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

◆ NDS_MINMAX_FCN

#define NDS_MINMAX_FCN (   FCN,
  OP,
  T,
 
)
Value:
T \
FCN (const T& m, S d) \
{ \
return do_ms_binary_op<T::element_type, T::element_type, S> (m, d, mx_inline_x##FCN); \
}
F77_RET_T const F77_REAL const F77_REAL F77_REAL &F77_RET_T const F77_DBLE const F77_DBLE F77_DBLE &F77_RET_T const F77_DBLE F77_DBLE &F77_RET_T const F77_REAL F77_REAL &F77_RET_T const F77_DBLE const F77_DBLE F77_DBLE * d

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

◆ PMM_BIN_OPS

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

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

◆ PMM_MULTIPLY_OP

#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) \
octave::err_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; \
}
static const idx_vector colon
Definition: idx-vector.h:498
ComplexColumnVector operator*(const ComplexMatrix &m, const ColumnVector &a)
Definition: CColVector.cc:291
void err_nonconformant(const char *op, octave_idx_type op1_len, octave_idx_type op2_len)
With real return the complex result
Definition: data.cc:3260
p
Definition: lu.cc:138
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
F77_RET_T const F77_REAL const F77_REAL F77_REAL &F77_RET_T const F77_DBLE const F77_DBLE F77_DBLE &F77_RET_T const F77_DBLE F77_DBLE &F77_RET_T const F77_REAL F77_REAL &F77_RET_T const F77_DBLE * x

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

◆ SDM_BIN_OP

#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; \
}
for(octave_idx_type n=0;n< hcv.numel();n++)
Definition: graphics.cc:10831
s
Definition: file-io.cc:2729
for i
Definition: data.cc:5264

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

◆ SDM_BIN_OPS

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

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

◆ SM_BIN_OP

#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); \
}
s
Definition: file-io.cc:2729
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:756

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

◆ SM_BIN_OPS

#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)
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:108
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:107
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:106
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109
#define SM_BIN_OP(R, OP, S, M, F)
Definition: mx-op-defs.h:132

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

◆ SM_BOOL_OP

#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); \
}
s
Definition: file-io.cc:2729
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:756

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

◆ SM_BOOL_OPS

#define SM_BOOL_OPS (   S,
  M 
)
Value:
SM_BOOL_OP (mx_el_or, mx_inline_or, S, M)
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86
void mx_inline_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:215
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
void mx_inline_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:216
#define SM_BOOL_OP(F, OP, S, M)
Definition: mx-op-defs.h:160

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

◆ SM_CMP_OP

#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); \
}
s
Definition: file-io.cc:2729
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:756

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

◆ SM_CMP_OPS

#define SM_CMP_OPS (   S,
  M 
)
Value:
SM_CMP_OP (mx_el_le, mx_inline_le, S, M) \
SM_CMP_OP (mx_el_ge, mx_inline_ge, S, M) \
SM_CMP_OP (mx_el_gt, mx_inline_gt, S, M) \
SM_CMP_OP (mx_el_eq, mx_inline_eq, S, M) \
SM_CMP_OP (mx_el_ne, mx_inline_ne, S, M)
void mx_inline_le(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:151
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_ne(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:155
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:154
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_ge(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:153
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_gt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:152
#define SM_CMP_OP(F, OP, S, M)
Definition: mx-op-defs.h:145
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_lt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:150
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89

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

◆ SNANCHK

#define SNANCHK (   s)
Value:

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

◆ SND_BIN_OP

#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); \
}
s
Definition: file-io.cc:2729
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:756

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

◆ SND_BIN_OPS

#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:108
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:107
#define SND_BIN_OP(R, OP, S, ND, F)
Definition: mx-op-defs.h:265
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:106
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109

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

◆ SND_BOOL_OP

#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); \
}
s
Definition: file-io.cc:2729
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:756

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

◆ SND_BOOL_OPS

#define SND_BOOL_OPS (   S,
  ND 
)
Value:
SND_BOOL_OP (mx_el_or, mx_inline_or, S, ND) \
SND_BOOL_OP (mx_el_not_and, mx_inline_not_and, S, ND) \
SND_BOOL_OP (mx_el_not_or, mx_inline_not_or, S, ND) \
SND_BOOL_OP (mx_el_and_not, mx_inline_and_not, S, ND) \
SND_BOOL_OP (mx_el_or_not, mx_inline_or_not, S, ND)
void mx_inline_or_not(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:220
boolNDArray mx_el_and_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:135
boolNDArray mx_el_not_or(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:135
boolNDArray mx_el_not_and(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:135
#define SND_BOOL_OP(F, OP, S, ND)
Definition: mx-op-defs.h:293
void mx_inline_not_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:218
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86
void mx_inline_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:215
void mx_inline_not_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:217
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86
boolNDArray mx_el_or_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:135
void mx_inline_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:216
void mx_inline_and_not(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:219

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

◆ SND_CMP_OP

#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); \
}
s
Definition: file-io.cc:2729
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:756

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

◆ SND_CMP_OPS

#define SND_CMP_OPS (   S,
  ND 
)
Value:
SND_CMP_OP (mx_el_le, mx_inline_le, S, ND) \
SND_CMP_OP (mx_el_ge, mx_inline_ge, S, ND) \
SND_CMP_OP (mx_el_gt, mx_inline_gt, S, ND) \
SND_CMP_OP (mx_el_eq, mx_inline_eq, S, ND) \
SND_CMP_OP (mx_el_ne, mx_inline_ne, S, ND)
void mx_inline_le(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:151
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_ne(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:155
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:154
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_ge(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:153
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_gt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:152
#define SND_CMP_OP(F, OP, S, ND)
Definition: mx-op-defs.h:278
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
void mx_inline_lt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:150
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89

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

◆ SND_MINMAX_FCN

#define SND_MINMAX_FCN (   FCN,
  OP,
  T,
 
)
Value:
T \
FCN (S d, const T& m) \
{ \
return do_sm_binary_op<T::element_type, S, T::element_type> (d, m, mx_inline_x##FCN); \
}
F77_RET_T const F77_REAL const F77_REAL F77_REAL &F77_RET_T const F77_DBLE const F77_DBLE F77_DBLE &F77_RET_T const F77_DBLE F77_DBLE &F77_RET_T const F77_REAL F77_REAL &F77_RET_T const F77_DBLE const F77_DBLE F77_DBLE * d

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

◆ SV_BIN_OP

#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 F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT F77_DBLE * V
s
Definition: file-io.cc:2729
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:756

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

◆ SV_BIN_OPS

#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)
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT F77_DBLE * V
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:108
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:107
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:106
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109
#define SV_BIN_OP(R, F, OP, S, V)
Definition: mx-op-defs.h:59

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

◆ VS_BIN_OP

#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 F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT F77_DBLE * V
s
Definition: file-io.cc:2729
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:756

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

◆ VS_BIN_OPS

#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)
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT F77_DBLE * V
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:108
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:107
#define VS_BIN_OP(R, F, OP, V, S)
Definition: mx-op-defs.h:44
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:106
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109

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

◆ VV_BIN_OP

#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_char_matrix & v2
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:756

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

◆ VV_BIN_OPS

#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) \
VV_BIN_OP (R, product, mx_inline_mul, V1, V2) \
VV_BIN_OP (R, quotient, mx_inline_div, V1, V2)
ComplexColumnVector product(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:150
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:108
ComplexColumnVector quotient(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:150
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:107
#define VV_BIN_OP(R, F, OP, V1, V2)
Definition: mx-op-defs.h:74
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:106
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109

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