GNU Octave  4.2.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Macros
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:

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) \
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:405
void err_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:719

Definition at line 533 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:151
#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:110
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:108

Definition at line 556 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) \
octave::err_nonconformant (#OP, dm_nr, dm_nc, m_nr, m_nc); \
{ \
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:10128
octave_idx_type cols(void) const
Definition: oct-map.h:376
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
if(nargin< 2) print_usage()
Definition: cellfun.cc:405
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058
void err_nonconformant(const char *op, octave_idx_type op1_len, octave_idx_type op2_len)
octave_idx_type rows(void) const
Definition: oct-map.h:375
=val(i)}if ode{val(i)}occurs in table i
Definition: lookup.cc:239
else
Definition: cellfun.cc:437

Definition at line 462 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:494
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.

#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; \
}
for(octave_idx_type n=0;n< hcv.numel();n++)
Definition: graphics.cc:10128
void mx_inline_fill(size_t n, R *r, S s)
Definition: mx-inlines.cc:50
octave_idx_type cols(void) const
Definition: oct-map.h:376
octave_idx_type rows(void) const
Definition: Array.h:401
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:110
if(nargin< 2) print_usage()
Definition: cellfun.cc:405
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058
ComplexColumnVector operator*(const ComplexMatrix &m, const ColumnVector &a)
Definition: CColVector.cc:292
void err_nonconformant(const char *op, octave_idx_type op1_len, octave_idx_type op2_len)
octave_idx_type rows(void) const
Definition: oct-map.h:375
=val(i)}if ode{val(i)}occurs in table i
Definition: lookup.cc:239
octave_idx_type length(void) const
Definition: oct-map.h:372

Definition at line 494 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; \
}
for(octave_idx_type n=0;n< hcv.numel();n++)
Definition: graphics.cc:10128
s
Definition: file-io.cc:2682
=val(i)}if ode{val(i)}occurs in table i
Definition: lookup.cc:239

Definition at line 376 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:376

Definition at line 388 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) \
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:10128
octave_idx_type cols(void) const
Definition: oct-map.h:376
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
if(nargin< 2) print_usage()
Definition: cellfun.cc:405
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058
void err_nonconformant(const char *op, octave_idx_type op1_len, octave_idx_type op2_len)
octave_idx_type rows(void) const
Definition: oct-map.h:375
=val(i)}if ode{val(i)}occurs in table i
Definition: lookup.cc:239

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

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

#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; \
}
for(octave_idx_type n=0;n< hcv.numel();n++)
Definition: graphics.cc:10128
void mx_inline_fill(size_t n, R *r, S s)
Definition: mx-inlines.cc:50
octave_idx_type cols(void) const
Definition: oct-map.h:376
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:110
if(nargin< 2) print_usage()
Definition: cellfun.cc:405
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058
ComplexColumnVector operator*(const ComplexMatrix &m, const ColumnVector &a)
Definition: CColVector.cc:292
void err_nonconformant(const char *op, octave_idx_type op1_len, octave_idx_type op2_len)
octave_idx_type rows(void) const
Definition: oct-map.h:375
=val(i)}if ode{val(i)}occurs in table i
Definition: lookup.cc:239
octave_idx_type length(void) const
Definition: oct-map.h:372

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:577
#define NDS_MINMAX_FCN(FCN, OP, T, S)
Definition: mx-op-defs.h:570
charNDArray max(char d, const charNDArray &m)
Definition: chNDArray.cc:228
#define SND_MINMAX_FCN(FCN, OP, T, S)
Definition: mx-op-defs.h:563
charNDArray min(char d, const charNDArray &m)
Definition: chNDArray.cc:205

Definition at line 584 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:719

Definition at line 175 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:151
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:110
#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:151
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:108
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:111

Definition at line 182 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:38
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:719

Definition at line 203 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:217
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:218
#define MM_BOOL_OP(F, OP, M1, M2)
Definition: mx-op-defs.h:203

Definition at line 212 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:719

Definition at line 188 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:153
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:157
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:156
#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: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:155
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:154
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:152
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 195 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:542
void err_nan_to_logical_conversion(void)
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058

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

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

Definition at line 628 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 (); \
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:482
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
if(nargin< 2) print_usage()
Definition: cellfun.cc:405
ComplexColumnVector operator*(const ComplexMatrix &m, const ColumnVector &a)
Definition: CColVector.cc:292
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:3375
p
Definition: lu.cc:138
F77_RET_T F77_REAL &F77_RET_T F77_DBLE &F77_RET_T F77_REAL &F77_RET_T F77_DBLE &F77_RET_T F77_REAL &F77_RET_T F77_DBLE &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 F77_REAL &F77_RET_T F77_DBLE &F77_RET_T F77_DBLE &F77_RET_T F77_REAL &F77_RET_T F77_REAL &F77_RET_T F77_DBLE &F77_RET_T const F77_DBLE F77_DBLE &F77_RET_T const F77_REAL F77_REAL &F77_RET_T F77_REAL F77_REAL &F77_RET_T F77_DBLE F77_DBLE &F77_RET_T const F77_DBLE * x

Definition at line 611 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); \
}
s
Definition: file-io.cc:2682
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:719

Definition at line 89 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 F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:110
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109
#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:108
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:111

Definition at line 96 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:34
s
Definition: file-io.cc:2682
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058
#define MNANCHK(m, MT)
Definition: mx-op-defs.h:38
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:719

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

#define MS_BOOL_OPS (   M,
 
)
Value:
#define MS_BOOL_OP(F, OP, M, S)
Definition: mx-op-defs.h:117
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
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:217
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:218

Definition at line 126 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); \
}
s
Definition: file-io.cc:2682
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:719

Definition at line 102 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:153
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:157
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:156
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
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:155
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:154
#define MS_CMP_OP(F, OP, M, S)
Definition: mx-op-defs.h:102
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:152
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 109 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:719

Definition at line 312 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:151
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:110
ComplexColumnVector quotient(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:151
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109
#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:108
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:111

Definition at line 319 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:38
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:719

Definition at line 340 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:222
boolNDArray mx_el_and_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:136
boolNDArray mx_el_not_or(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:136
boolNDArray mx_el_not_and(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:136
#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:220
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:217
void mx_inline_not_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:219
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:136
void mx_inline_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:218
void mx_inline_and_not(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:221

Definition at line 349 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:719

Definition at line 325 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:153
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:157
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:156
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:155
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:154
#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:90
void mx_inline_lt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:152
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 332 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;
for(octave_idx_type n=0;n< hcv.numel();n++)
Definition: graphics.cc:10128
Definition: oct-parse.h:94
static int elem
Definition: __contourc__.cc:50
octave_value retval
Definition: data.cc:6294
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
=val(i)}if ode{val(i)}occurs in table i
Definition: lookup.cc:239

Definition at line 631 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:129
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:398
b
Definition: cellfun.cc:398

Definition at line 577 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); \
}
s
Definition: file-io.cc:2682
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:719

Definition at line 218 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:110
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:108
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:111
#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.

#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:34
s
Definition: file-io.cc:2682
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058
#define MNANCHK(m, MT)
Definition: mx-op-defs.h:38
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:719

Definition at line 246 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:222
#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:136
boolNDArray mx_el_not_or(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:136
boolNDArray mx_el_not_and(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:136
void mx_inline_not_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:220
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:217
void mx_inline_not_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:219
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:136
void mx_inline_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:218
void mx_inline_and_not(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:221

Definition at line 255 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); \
}
s
Definition: file-io.cc:2682
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:719

Definition at line 231 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:153
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:231
void mx_inline_ne(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:157
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:156
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:155
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:154
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:152
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 238 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:129
F77_RET_T F77_REAL &F77_RET_T F77_DBLE &F77_RET_T F77_REAL &F77_RET_T F77_DBLE &F77_RET_T F77_REAL &F77_RET_T F77_DBLE &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 F77_REAL &F77_RET_T F77_DBLE &F77_RET_T F77_DBLE &F77_RET_T F77_REAL &F77_RET_T F77_REAL &F77_RET_T F77_DBLE &F77_RET_T const F77_DBLE F77_DBLE &F77_RET_T const F77_REAL F77_REAL &F77_RET_T F77_REAL F77_REAL &F77_RET_T F77_DBLE F77_DBLE &F77_RET_T const F77_DBLE const F77_DBLE F77_DBLE * d
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058

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

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

Definition at line 625 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 (); \
if (p.columns () != nr) \
octave::err_nonconformant ("operator *", p.rows (), p.columns (), nr, nc); \
{ \
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:482
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
if(nargin< 2) print_usage()
Definition: cellfun.cc:405
ComplexColumnVector operator*(const ComplexMatrix &m, const ColumnVector &a)
Definition: CColVector.cc:292
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:3375
p
Definition: lu.cc:138
else
Definition: cellfun.cc:437
F77_RET_T F77_REAL &F77_RET_T F77_DBLE &F77_RET_T F77_REAL &F77_RET_T F77_DBLE &F77_RET_T F77_REAL &F77_RET_T F77_DBLE &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 F77_REAL &F77_RET_T F77_DBLE &F77_RET_T F77_DBLE &F77_RET_T F77_REAL &F77_RET_T F77_REAL &F77_RET_T F77_DBLE &F77_RET_T const F77_DBLE F77_DBLE &F77_RET_T const F77_REAL F77_REAL &F77_RET_T F77_REAL F77_REAL &F77_RET_T F77_DBLE F77_DBLE &F77_RET_T const F77_DBLE * x

Definition at line 594 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; \
}
for(octave_idx_type n=0;n< hcv.numel();n++)
Definition: graphics.cc:10128
s
Definition: file-io.cc:2682
=val(i)}if ode{val(i)}occurs in table i
Definition: lookup.cc:239

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

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

Definition at line 371 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); \
}
s
Definition: file-io.cc:2682
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:719

Definition at line 132 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 F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:110
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:108
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:111
#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.

#define SM_BOOL_OP (   F,
  OP,
  S,
  M 
)
Value:
F (const S& s, const M& m) \
{ \
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:34
s
Definition: file-io.cc:2682
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058
#define MNANCHK(m, MT)
Definition: mx-op-defs.h:38
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:719

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

#define SM_BOOL_OPS (   S,
  M 
)
Value:
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
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:217
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:218
#define SM_BOOL_OP(F, OP, S, M)
Definition: mx-op-defs.h:160

Definition at line 169 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); \
}
s
Definition: file-io.cc:2682
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:719

Definition at line 145 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:153
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:157
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:156
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
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:155
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:154
#define SM_CMP_OP(F, OP, S, M)
Definition: mx-op-defs.h:145
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:152
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

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

#define SNANCHK (   s)
Value:

Definition at line 34 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); \
}
s
Definition: file-io.cc:2682
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:719

Definition at line 265 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:110
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109
#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:108
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:111

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

#define SND_BOOL_OP (   F,
  OP,
  S,
  ND 
)
Value:
F (const S& s, const ND& m) \
{ \
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:34
s
Definition: file-io.cc:2682
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058
#define MNANCHK(m, MT)
Definition: mx-op-defs.h:38
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:719

Definition at line 293 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:222
boolNDArray mx_el_and_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:136
boolNDArray mx_el_not_or(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:136
boolNDArray mx_el_not_and(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:136
#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:220
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:217
void mx_inline_not_and(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:219
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:136
void mx_inline_or(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:218
void mx_inline_and_not(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:221

Definition at line 302 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); \
}
s
Definition: file-io.cc:2682
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058
void F(const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n)
Definition: mx-inlines.cc:719

Definition at line 278 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:153
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:157
void mx_inline_eq(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:156
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:155
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:154
#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:90
void mx_inline_lt(size_t n, bool *r, const X *x, const Y *y)
Definition: mx-inlines.cc:152
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 285 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:129
F77_RET_T F77_REAL &F77_RET_T F77_DBLE &F77_RET_T F77_REAL &F77_RET_T F77_DBLE &F77_RET_T F77_REAL &F77_RET_T F77_DBLE &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 F77_REAL &F77_RET_T F77_DBLE &F77_RET_T F77_DBLE &F77_RET_T F77_REAL &F77_RET_T F77_REAL &F77_RET_T F77_DBLE &F77_RET_T const F77_DBLE F77_DBLE &F77_RET_T const F77_REAL F77_REAL &F77_RET_T F77_REAL F77_REAL &F77_RET_T F77_DBLE F77_DBLE &F77_RET_T const F77_DBLE const F77_DBLE F77_DBLE * d
nd deftypefn *octave_map m
Definition: ov-struct.cc:2058

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

Definition at line 59 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)
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:110
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109
void mx_inline_add(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:108
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:111
#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.

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

Definition at line 44 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)
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:110
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109
#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:108
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:111

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

Definition at line 74 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:151
void mx_inline_mul(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:110
ComplexColumnVector quotient(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:151
void mx_inline_sub(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:109
#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:108
void mx_inline_div(size_t n, R *r, const X *x, const Y *y)
Definition: mx-inlines.cc:111

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