#include "octave-config.h"
Go to the source code of this file.
Macros | |
#define | BIN_OP_DECL(R, OP, X, Y, API) extern API R OP (const X&, const Y&) |
#define | BOOL_OP_DECL(OP, X, Y, API) extern API boolMatrix OP (const X&, const Y&) |
#define | CMP_OP_DECL(OP, X, Y, API) extern API boolMatrix OP (const X&, const Y&) |
#define | DMDM_BIN_OP_DECLS(R, DM1, DM2, API) |
#define | DMDM_OP_DECLS(R, DM1, DM2, API) DMDM_BIN_OP_DECLS (R, DM1, DM2, API) |
#define | DMM_BIN_OP_DECLS(R, DM, M, API) |
#define | DMM_OP_DECLS(R, DM, M, API) DMM_BIN_OP_DECLS(R, DM, M, API) |
#define | DMS_BIN_OP_DECLS(R, DM, S, API) |
#define | DMS_OP_DECLS(R, DM, S, API) DMS_BIN_OP_DECLS(R, DM, S, API) |
#define | MDM_BIN_OP_DECLS(R, M, DM, API) |
#define | MDM_OP_DECLS(R, M, DM, API) MDM_BIN_OP_DECLS(R, M, DM, API) |
#define | MINMAX_DECLS(T, S, API) |
#define | MM_BIN_OP_DECLS(R, M1, M2, API) |
#define | MM_BOOL_OP_DECLS(M1, M2, API) |
#define | MM_CMP_OP_DECLS(M1, M2, API) |
#define | MM_OP_DECLS(R, M1, M2, API) |
#define | MPM_BIN_OP_DECLS(R, M, PM, API) BIN_OP_DECL (R, operator *, M, PM, API); |
#define | MS_BIN_OP_DECLS(R, M, S, API) |
#define | MS_BOOL_OP_DECLS(M, S, API) |
#define | MS_CMP_OP_DECLS(M, S, API) |
#define | MS_OP_DECLS(R, M, S, API) |
#define | NDBOOL_OP_DECL(OP, X, Y, API) extern API boolNDArray OP (const X&, const Y&) |
#define | NDCMP_OP_DECL(OP, X, Y, API) extern API boolNDArray OP (const X&, const Y&) |
#define | NDND_BIN_OP_DECLS(R, ND1, ND2, API) |
#define | NDND_BOOL_OP_DECLS(ND1, ND2, API) |
#define | NDND_CMP_OP_DECLS(ND1, ND2, API) |
#define | NDND_OP_DECLS(R, ND1, ND2, API) |
#define | NDS_BIN_OP_DECLS(R, ND, S, API) |
#define | NDS_BOOL_OP_DECLS(ND, S, API) |
#define | NDS_CMP_OP_DECLS(ND, S, API) |
#define | NDS_OP_DECLS(R, ND, S, API) |
#define | PMM_BIN_OP_DECLS(R, PM, M, API) BIN_OP_DECL (R, operator *, PM, M, API); |
#define | SDM_BIN_OP_DECLS(R, S, DM, API) BIN_OP_DECL (R, operator *, S, DM, API); \ |
#define | SDM_OP_DECLS(R, S, DM, API) SDM_BIN_OP_DECLS(R, S, DM, API) |
#define | SM_BIN_OP_DECLS(R, S, M, API) |
#define | SM_BOOL_OP_DECLS(S, M, API) |
#define | SM_CMP_OP_DECLS(S, M, API) |
#define | SM_OP_DECLS(R, S, M, API) |
#define | SND_BIN_OP_DECLS(R, S, ND, API) |
#define | SND_BOOL_OP_DECLS(S, ND, API) |
#define | SND_CMP_OP_DECLS(S, ND, API) |
#define | SND_OP_DECLS(R, S, ND, API) |
#define | SV_BIN_OP_DECLS(R, S, V, API) |
#define | SV_OP_DECLS(R, S, V, API) SV_BIN_OP_DECLS(R, S, V, API) |
#define | VS_BIN_OP_DECLS(R, V, S, API) |
#define | VS_OP_DECLS(R, V, S, API) VS_BIN_OP_DECLS(R, V, S, API) |
#define | VV_BIN_OP_DECLS(R, V1, V2, API) |
#define | VV_OP_DECLS(R, V1, V2, API) VV_BIN_OP_DECLS(R, V1, V2, API) |
#define BIN_OP_DECL | ( | R, | |
OP, | |||
X, | |||
Y, | |||
API | |||
) | extern API R OP (const X&, const Y&) |
Definition at line 31 of file mx-op-decl.h.
#define BOOL_OP_DECL | ( | OP, | |
X, | |||
Y, | |||
API | |||
) | extern API boolMatrix OP (const X&, const Y&) |
Definition at line 43 of file mx-op-decl.h.
#define CMP_OP_DECL | ( | OP, | |
X, | |||
Y, | |||
API | |||
) | extern API boolMatrix OP (const X&, const Y&) |
Definition at line 37 of file mx-op-decl.h.
#define DMDM_BIN_OP_DECLS | ( | R, | |
DM1, | |||
DM2, | |||
API | |||
) |
Definition at line 279 of file mx-op-decl.h.
#define DMDM_OP_DECLS | ( | R, | |
DM1, | |||
DM2, | |||
API | |||
) | DMDM_BIN_OP_DECLS (R, DM1, DM2, API) |
Definition at line 284 of file mx-op-decl.h.
#define DMM_BIN_OP_DECLS | ( | R, | |
DM, | |||
M, | |||
API | |||
) |
Definition at line 269 of file mx-op-decl.h.
#define DMM_OP_DECLS | ( | R, | |
DM, | |||
M, | |||
API | |||
) | DMM_BIN_OP_DECLS(R, DM, M, API) |
Definition at line 274 of file mx-op-decl.h.
#define DMS_BIN_OP_DECLS | ( | R, | |
DM, | |||
S, | |||
API | |||
) |
Definition at line 250 of file mx-op-decl.h.
#define DMS_OP_DECLS | ( | R, | |
DM, | |||
S, | |||
API | |||
) | DMS_BIN_OP_DECLS(R, DM, S, API) |
Definition at line 254 of file mx-op-decl.h.
#define MDM_BIN_OP_DECLS | ( | R, | |
M, | |||
DM, | |||
API | |||
) |
Definition at line 259 of file mx-op-decl.h.
#define MDM_OP_DECLS | ( | R, | |
M, | |||
DM, | |||
API | |||
) | MDM_BIN_OP_DECLS(R, M, DM, API) |
Definition at line 264 of file mx-op-decl.h.
#define MINMAX_DECLS | ( | T, | |
S, | |||
API | |||
) |
Definition at line 289 of file mx-op-decl.h.
#define MM_BIN_OP_DECLS | ( | R, | |
M1, | |||
M2, | |||
API | |||
) |
Definition at line 134 of file mx-op-decl.h.
#define MM_BOOL_OP_DECLS | ( | M1, | |
M2, | |||
API | |||
) |
Definition at line 148 of file mx-op-decl.h.
#define MM_CMP_OP_DECLS | ( | M1, | |
M2, | |||
API | |||
) |
Definition at line 140 of file mx-op-decl.h.
#define MM_OP_DECLS | ( | R, | |
M1, | |||
M2, | |||
API | |||
) |
Definition at line 152 of file mx-op-decl.h.
#define MPM_BIN_OP_DECLS | ( | R, | |
M, | |||
PM, | |||
API | |||
) | BIN_OP_DECL (R, operator *, M, PM, API); |
Definition at line 302 of file mx-op-decl.h.
#define MS_BIN_OP_DECLS | ( | R, | |
M, | |||
S, | |||
API | |||
) |
Definition at line 84 of file mx-op-decl.h.
#define MS_BOOL_OP_DECLS | ( | M, | |
S, | |||
API | |||
) |
Definition at line 98 of file mx-op-decl.h.
#define MS_CMP_OP_DECLS | ( | M, | |
S, | |||
API | |||
) |
#define MS_OP_DECLS | ( | R, | |
M, | |||
S, | |||
API | |||
) |
Definition at line 102 of file mx-op-decl.h.
#define NDBOOL_OP_DECL | ( | OP, | |
X, | |||
Y, | |||
API | |||
) | extern API boolNDArray OP (const X&, const Y&) |
Definition at line 46 of file mx-op-decl.h.
#define NDCMP_OP_DECL | ( | OP, | |
X, | |||
Y, | |||
API | |||
) | extern API boolNDArray OP (const X&, const Y&) |
Definition at line 40 of file mx-op-decl.h.
#define NDND_BIN_OP_DECLS | ( | R, | |
ND1, | |||
ND2, | |||
API | |||
) |
Definition at line 213 of file mx-op-decl.h.
#define NDND_BOOL_OP_DECLS | ( | ND1, | |
ND2, | |||
API | |||
) |
Definition at line 227 of file mx-op-decl.h.
#define NDND_CMP_OP_DECLS | ( | ND1, | |
ND2, | |||
API | |||
) |
Definition at line 219 of file mx-op-decl.h.
#define NDND_OP_DECLS | ( | R, | |
ND1, | |||
ND2, | |||
API | |||
) |
Definition at line 235 of file mx-op-decl.h.
#define NDS_BIN_OP_DECLS | ( | R, | |
ND, | |||
S, | |||
API | |||
) |
Definition at line 159 of file mx-op-decl.h.
#define NDS_BOOL_OP_DECLS | ( | ND, | |
S, | |||
API | |||
) |
Definition at line 173 of file mx-op-decl.h.
#define NDS_CMP_OP_DECLS | ( | ND, | |
S, | |||
API | |||
) |
Definition at line 165 of file mx-op-decl.h.
#define NDS_OP_DECLS | ( | R, | |
ND, | |||
S, | |||
API | |||
) |
Definition at line 179 of file mx-op-decl.h.
#define PMM_BIN_OP_DECLS | ( | R, | |
PM, | |||
M, | |||
API | |||
) | BIN_OP_DECL (R, operator *, PM, M, API); |
Definition at line 299 of file mx-op-decl.h.
#define SDM_BIN_OP_DECLS | ( | R, | |
S, | |||
DM, | |||
API | |||
) | BIN_OP_DECL (R, operator *, S, DM, API); \ |
Definition at line 242 of file mx-op-decl.h.
#define SDM_OP_DECLS | ( | R, | |
S, | |||
DM, | |||
API | |||
) | SDM_BIN_OP_DECLS(R, S, DM, API) |
Definition at line 245 of file mx-op-decl.h.
#define SM_BIN_OP_DECLS | ( | R, | |
S, | |||
M, | |||
API | |||
) |
Definition at line 109 of file mx-op-decl.h.
#define SM_BOOL_OP_DECLS | ( | S, | |
M, | |||
API | |||
) |
Definition at line 123 of file mx-op-decl.h.
#define SM_CMP_OP_DECLS | ( | S, | |
M, | |||
API | |||
) |
#define SM_OP_DECLS | ( | R, | |
S, | |||
M, | |||
API | |||
) |
Definition at line 127 of file mx-op-decl.h.
#define SND_BIN_OP_DECLS | ( | R, | |
S, | |||
ND, | |||
API | |||
) |
Definition at line 186 of file mx-op-decl.h.
#define SND_BOOL_OP_DECLS | ( | S, | |
ND, | |||
API | |||
) |
Definition at line 200 of file mx-op-decl.h.
#define SND_CMP_OP_DECLS | ( | S, | |
ND, | |||
API | |||
) |
Definition at line 192 of file mx-op-decl.h.
#define SND_OP_DECLS | ( | R, | |
S, | |||
ND, | |||
API | |||
) |
Definition at line 206 of file mx-op-decl.h.
#define SV_BIN_OP_DECLS | ( | R, | |
S, | |||
V, | |||
API | |||
) |
Definition at line 62 of file mx-op-decl.h.
#define SV_OP_DECLS | ( | R, | |
S, | |||
V, | |||
API | |||
) | SV_BIN_OP_DECLS(R, S, V, API) |
Definition at line 68 of file mx-op-decl.h.
#define VS_BIN_OP_DECLS | ( | R, | |
V, | |||
S, | |||
API | |||
) |
Definition at line 51 of file mx-op-decl.h.
#define VS_OP_DECLS | ( | R, | |
V, | |||
S, | |||
API | |||
) | VS_BIN_OP_DECLS(R, V, S, API) |
Definition at line 57 of file mx-op-decl.h.
#define VV_BIN_OP_DECLS | ( | R, | |
V1, | |||
V2, | |||
API | |||
) |
Definition at line 73 of file mx-op-decl.h.
#define VV_OP_DECLS | ( | R, | |
V1, | |||
V2, | |||
API | |||
) | VV_BIN_OP_DECLS(R, V1, V2, API) |
Definition at line 79 of file mx-op-decl.h.