GNU Octave  4.0.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Macros
Sparse-op-decls.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define SPARSE_BIN_OP_DECL(R, OP, X, Y, API)   extern API R OP (const X&, const Y&)
 
#define SPARSE_BOOL_OP_DECL(OP, X, Y, API)   extern API SparseBoolMatrix OP (const X&, const Y&)
 
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)   extern API SparseBoolMatrix OP (const X&, const Y&)
 
#define SPARSE_MSM_BIN_OP_DECLS(R1, R2, M1, M2, API)
 
#define SPARSE_MSM_BOOL_OP_DECLS(M1, M2, API)
 
#define SPARSE_MSM_CMP_OP_DECLS(M1, M2, API)
 
#define SPARSE_MSM_EQNE_OP_DECLS(M1, M2, API)
 
#define SPARSE_MSM_OP_DECLS(R1, R2, M1, M2, API)
 
#define SPARSE_SMM_BIN_OP_DECLS(R1, R2, M1, M2, API)
 
#define SPARSE_SMM_BOOL_OP_DECLS(M1, M2, API)
 
#define SPARSE_SMM_CMP_OP_DECLS(M1, M2, API)
 
#define SPARSE_SMM_EQNE_OP_DECLS(M1, M2, API)
 
#define SPARSE_SMM_OP_DECLS(R1, R2, M1, M2, API)
 
#define SPARSE_SMS_BIN_OP_DECLS(R1, R2, M, S, API)
 
#define SPARSE_SMS_BOOL_OP_DECLS(M, S, API)
 
#define SPARSE_SMS_CMP_OP_DECLS(M, S, API)
 
#define SPARSE_SMS_EQNE_OP_DECLS(M, S, API)
 
#define SPARSE_SMS_OP_DECLS(R1, R2, M, S, API)
 
#define SPARSE_SMSM_BIN_OP_DECLS(R1, R2, M1, M2, API)
 
#define SPARSE_SMSM_BOOL_OP_DECLS(M1, M2, API)
 
#define SPARSE_SMSM_CMP_OP_DECLS(M1, M2, API)
 
#define SPARSE_SMSM_EQNE_OP_DECLS(M1, M2, API)
 
#define SPARSE_SMSM_OP_DECLS(R1, R2, M1, M2, API)
 
#define SPARSE_SSM_BIN_OP_DECLS(R1, R2, S, M, API)
 
#define SPARSE_SSM_BOOL_OP_DECLS(S, M, API)
 
#define SPARSE_SSM_CMP_OP_DECLS(S, M, API)
 
#define SPARSE_SSM_EQNE_OP_DECLS(S, M, API)
 
#define SPARSE_SSM_OP_DECLS(R1, R2, S, M, API)
 

Macro Definition Documentation

#define SPARSE_BIN_OP_DECL (   R,
  OP,
  X,
  Y,
  API 
)    extern API R OP (const X&, const Y&)

Definition at line 30 of file Sparse-op-decls.h.

#define SPARSE_BOOL_OP_DECL (   OP,
  X,
  Y,
  API 
)    extern API SparseBoolMatrix OP (const X&, const Y&)

Definition at line 36 of file Sparse-op-decls.h.

#define SPARSE_CMP_OP_DECL (   OP,
  X,
  Y,
  API 
)    extern API SparseBoolMatrix OP (const X&, const Y&)

Definition at line 33 of file Sparse-op-decls.h.

#define SPARSE_MSM_BIN_OP_DECLS (   R1,
  R2,
  M1,
  M2,
  API 
)
Value:
SPARSE_BIN_OP_DECL (R1, operator +, M1, M2, API); \
SPARSE_BIN_OP_DECL (R1, operator -, M1, M2, API); \
SPARSE_BIN_OP_DECL (R2, product, M1, M2, API); \
SPARSE_BIN_OP_DECL (R2, quotient, M1, M2, API);
ComplexColumnVector product(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:149
ComplexColumnVector quotient(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:149
#define SPARSE_BIN_OP_DECL(R, OP, X, Y, API)

Definition at line 128 of file Sparse-op-decls.h.

#define SPARSE_MSM_BOOL_OP_DECLS (   M1,
  M2,
  API 
)
Value:
#define SPARSE_BOOL_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87

Definition at line 146 of file Sparse-op-decls.h.

#define SPARSE_MSM_CMP_OP_DECLS (   M1,
  M2,
  API 
)
Value:
SPARSE_CMP_OP_DECL (mx_el_lt, M1, M2, API); \
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
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
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 134 of file Sparse-op-decls.h.

#define SPARSE_MSM_EQNE_OP_DECLS (   M1,
  M2,
  API 
)
Value:
SPARSE_CMP_OP_DECL (mx_el_eq, M1, M2, API); \
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 142 of file Sparse-op-decls.h.

#define SPARSE_MSM_OP_DECLS (   R1,
  R2,
  M1,
  M2,
  API 
)
Value:
SPARSE_MSM_BIN_OP_DECLS (R1, R2, M1, M2, API) \
#define SPARSE_MSM_CMP_OP_DECLS(M1, M2, API)
#define SPARSE_MSM_BOOL_OP_DECLS(M1, M2, API)
#define SPARSE_MSM_BIN_OP_DECLS(R1, R2, M1, M2, API)

Definition at line 150 of file Sparse-op-decls.h.

#define SPARSE_SMM_BIN_OP_DECLS (   R1,
  R2,
  M1,
  M2,
  API 
)
Value:
SPARSE_BIN_OP_DECL (R1, operator +, M1, M2, API); \
SPARSE_BIN_OP_DECL (R1, operator -, M1, M2, API); \
SPARSE_BIN_OP_DECL (R2, product, M1, M2, API); \
SPARSE_BIN_OP_DECL (R2, quotient, M1, M2, API);
ComplexColumnVector product(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:149
ComplexColumnVector quotient(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:149
#define SPARSE_BIN_OP_DECL(R, OP, X, Y, API)

Definition at line 157 of file Sparse-op-decls.h.

#define SPARSE_SMM_BOOL_OP_DECLS (   M1,
  M2,
  API 
)
Value:
#define SPARSE_BOOL_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87

Definition at line 175 of file Sparse-op-decls.h.

#define SPARSE_SMM_CMP_OP_DECLS (   M1,
  M2,
  API 
)
Value:
SPARSE_CMP_OP_DECL (mx_el_lt, M1, M2, API); \
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
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
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 163 of file Sparse-op-decls.h.

#define SPARSE_SMM_EQNE_OP_DECLS (   M1,
  M2,
  API 
)
Value:
SPARSE_CMP_OP_DECL (mx_el_eq, M1, M2, API); \
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 171 of file Sparse-op-decls.h.

#define SPARSE_SMM_OP_DECLS (   R1,
  R2,
  M1,
  M2,
  API 
)
Value:
SPARSE_SMM_BIN_OP_DECLS (R1, R2, M1, M2, API) \
#define SPARSE_SMM_BOOL_OP_DECLS(M1, M2, API)
#define SPARSE_SMM_BIN_OP_DECLS(R1, R2, M1, M2, API)
#define SPARSE_SMM_CMP_OP_DECLS(M1, M2, API)

Definition at line 179 of file Sparse-op-decls.h.

#define SPARSE_SMS_BIN_OP_DECLS (   R1,
  R2,
  M,
  S,
  API 
)
Value:
SPARSE_BIN_OP_DECL (R1, operator +, M, S, API); \
SPARSE_BIN_OP_DECL (R1, operator -, M, S, API); \
SPARSE_BIN_OP_DECL (R2, operator *, M, S, API); \
SPARSE_BIN_OP_DECL (R2, operator /, M, S, API);
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
#define SPARSE_BIN_OP_DECL(R, OP, X, Y, API)

Definition at line 41 of file Sparse-op-decls.h.

#define SPARSE_SMS_BOOL_OP_DECLS (   M,
  S,
  API 
)
Value:
#define SPARSE_BOOL_OP_DECL(OP, X, Y, API)
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87

Definition at line 59 of file Sparse-op-decls.h.

#define SPARSE_SMS_CMP_OP_DECLS (   M,
  S,
  API 
)
Value:
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
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
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 47 of file Sparse-op-decls.h.

#define SPARSE_SMS_EQNE_OP_DECLS (   M,
  S,
  API 
)
Value:
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 55 of file Sparse-op-decls.h.

#define SPARSE_SMS_OP_DECLS (   R1,
  R2,
  M,
  S,
  API 
)
Value:
SPARSE_SMS_BIN_OP_DECLS (R1, R2, M, S, API) \
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
#define SPARSE_SMS_BIN_OP_DECLS(R1, R2, M, S, API)
#define SPARSE_SMS_CMP_OP_DECLS(M, S, API)
#define SPARSE_SMS_BOOL_OP_DECLS(M, S, API)

Definition at line 63 of file Sparse-op-decls.h.

#define SPARSE_SMSM_BIN_OP_DECLS (   R1,
  R2,
  M1,
  M2,
  API 
)
Value:
SPARSE_BIN_OP_DECL (R1, operator +, M1, M2, API); \
SPARSE_BIN_OP_DECL (R1, operator -, M1, M2, API); \
SPARSE_BIN_OP_DECL (R2, product, M1, M2, API); \
SPARSE_BIN_OP_DECL (R2, quotient, M1, M2, API);
ComplexColumnVector product(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:149
ComplexColumnVector quotient(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:149
#define SPARSE_BIN_OP_DECL(R, OP, X, Y, API)

Definition at line 99 of file Sparse-op-decls.h.

#define SPARSE_SMSM_BOOL_OP_DECLS (   M1,
  M2,
  API 
)
Value:
#define SPARSE_BOOL_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87

Definition at line 117 of file Sparse-op-decls.h.

#define SPARSE_SMSM_CMP_OP_DECLS (   M1,
  M2,
  API 
)
Value:
SPARSE_CMP_OP_DECL (mx_el_lt, M1, M2, API); \
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
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
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 105 of file Sparse-op-decls.h.

#define SPARSE_SMSM_EQNE_OP_DECLS (   M1,
  M2,
  API 
)
Value:
SPARSE_CMP_OP_DECL (mx_el_eq, M1, M2, API); \
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 113 of file Sparse-op-decls.h.

#define SPARSE_SMSM_OP_DECLS (   R1,
  R2,
  M1,
  M2,
  API 
)
Value:
SPARSE_SMSM_BIN_OP_DECLS (R1, R2, M1, M2, API) \
#define SPARSE_SMSM_BOOL_OP_DECLS(M1, M2, API)
#define SPARSE_SMSM_CMP_OP_DECLS(M1, M2, API)
#define SPARSE_SMSM_BIN_OP_DECLS(R1, R2, M1, M2, API)

Definition at line 121 of file Sparse-op-decls.h.

#define SPARSE_SSM_BIN_OP_DECLS (   R1,
  R2,
  S,
  M,
  API 
)
Value:
SPARSE_BIN_OP_DECL (R1, operator +, S, M, API); \
SPARSE_BIN_OP_DECL (R1, operator -, S, M, API); \
SPARSE_BIN_OP_DECL (R2, operator *, S, M, API); \
SPARSE_BIN_OP_DECL (R2, operator /, S, M, API);
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
#define SPARSE_BIN_OP_DECL(R, OP, X, Y, API)

Definition at line 70 of file Sparse-op-decls.h.

#define SPARSE_SSM_BOOL_OP_DECLS (   S,
  M,
  API 
)
Value:
#define SPARSE_BOOL_OP_DECL(OP, X, Y, API)
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:87

Definition at line 88 of file Sparse-op-decls.h.

#define SPARSE_SSM_CMP_OP_DECLS (   S,
  M,
  API 
)
Value:
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
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
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 76 of file Sparse-op-decls.h.

#define SPARSE_SSM_EQNE_OP_DECLS (   S,
  M,
  API 
)
Value:
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:90

Definition at line 84 of file Sparse-op-decls.h.

#define SPARSE_SSM_OP_DECLS (   R1,
  R2,
  S,
  M,
  API 
)
Value:
SPARSE_SSM_BIN_OP_DECLS (R1, R2, S, M, API) \
F77_RET_T const octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type & M
Definition: CmplxGEPBAL.cc:49
#define SPARSE_SSM_CMP_OP_DECLS(S, M, API)
#define SPARSE_SSM_BOOL_OP_DECLS(S, M, API)
#define SPARSE_SSM_BIN_OP_DECLS(R1, R2, S, M, API)

Definition at line 92 of file Sparse-op-decls.h.