GNU Octave
3.8.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
|
#include "Array-util.h"
Go to the source code of this file.
Macros | |
#define | ASSIGNANYOPDECL(name) |
#define | ASSIGNOPDECL(name) |
#define | BINOPDECL(name, a1, a2) |
#define | CAST_BINOP_ARGS(t1, t2) |
#define | CAST_CONV_ARG(t) t v = dynamic_cast<t> (a) |
#define | CAST_UNOP_ARG(t) t v = dynamic_cast<t> (a) |
#define | CATOP_NONCONFORMANT(msg) |
#define | CATOPDECL(name, a1, a2) |
#define | CONCAT2(x, y) CONCAT2X(x,y) |
#define | CONCAT2X(x, y) x ## y |
#define | CONCAT3(x, y, z) CONCAT3X(x,y,z) |
#define | CONCAT3X(x, y, z) x ## y ## z |
#define | CONVDECL(name) |
#define | CONVDECLX(name) |
#define | DEFASSIGNANYOP_FN(name, t1, f) |
#define | DEFASSIGNOP(name, t1, t2) ASSIGNOPDECL (name) |
#define | DEFASSIGNOP_FN(name, t1, t2, f) |
#define | DEFBINOP(name, t1, t2) BINOPDECL (name, a1, a2) |
#define | DEFBINOP_FN(name, t1, t2, f) |
#define | DEFBINOP_OP(name, t1, t2, op) |
#define | DEFBINOPX(name, t1, t2) BINOPDECL (name, , ) |
#define | DEFCATOP(name, t1, t2) CATOPDECL (name, a1, a2) |
#define | DEFCATOP_FN(name, t1, t2, f) |
#define | DEFCATOPX(name, t1, t2) CATOPDECL (name, , ) |
#define | DEFCMPLXCMPOP_OP(name, t1, t2, op) |
#define | DEFCONV(name, a_dummy, b_dummy) CONVDECL (name) |
#define | DEFCONVFN(name, tfrom, tto) DEFCONVFNX2 (name, tfrom, CONCAT2(tto, _matrix), CONCAT2(tto, _)) |
#define | DEFCONVFN2(name, tfrom, sm, tto) DEFCONVFNX2 (name, CONCAT3(tfrom, _, sm), CONCAT2(tto, _matrix), CONCAT2(tto, _)) |
#define | DEFCONVFNX(name, tfrom, ovtto, tto, e) |
#define | DEFCONVFNX2(name, tfrom, ovtto, e) |
#define | DEFDBLCONVFN(name, ovtfrom, e) |
#define | DEFFLTCONVFN(name, ovtfrom, e) |
#define | DEFNCUNOP_METHOD(name, t, method) |
#define | DEFNDASSIGNOP_FN(name, t1, t2, e, f) |
#define | DEFNDASSIGNOP_FNOP(name, t1, t2, f, fnop) |
#define | DEFNDASSIGNOP_OP(name, t1, t2, f, op) |
#define | DEFNDBINOP_FN(name, t1, t2, e1, e2, f) |
#define | DEFNDBINOP_OP(name, t1, t2, e1, e2, op) |
#define | DEFNDCATOP_FN(name, t1, t2, e1, e2, f) |
#define | DEFNDCATOP_FN2(name, t1, t2, tc1, tc2, e1, e2, f) |
#define | DEFNDCHARCATOP_FN(name, t1, t2, f) |
#define | DEFNDCMPLXCMPOP_FN(name, t1, t2, e1, e2, f) |
#define | DEFNDUNOP_FN(name, t, e, f) |
#define | DEFNDUNOP_OP(name, t, e, op) |
#define | DEFNULLASSIGNOP_FN(name, t, f) |
#define | DEFSCALARBOOLOP_OP(name, t1, t2, op) |
#define | DEFSTRDBLCONVFN(name, tfrom) DEFCONVFNX(name, tfrom, matrix, , char_) |
#define | DEFSTRFLTCONVFN(name, tfrom) DEFCONVFNX(name, tfrom, float_matrix, Float, char_) |
#define | DEFSTRINTCONVFN(name, tto) DEFCONVFNX(name, char_matrix_str, CONCAT2(tto, _matrix), tto, char_) |
#define | DEFUNOP(name, t) UNOPDECL (name, a) |
#define | DEFUNOP_FN(name, t, f) |
#define | DEFUNOP_OP(name, t, op) |
#define | DEFUNOPX(name, t) UNOPDECL (name, , ) |
#define | INSTALL_ASSIGNANYOP(op, t1, f) |
#define | INSTALL_ASSIGNCONV(t1, t2, tr) |
#define | INSTALL_ASSIGNOP(op, t1, t2, f) |
#define | INSTALL_BINOP(op, t1, t2, f) |
#define | INSTALL_CATOP(t1, t2, f) |
#define | INSTALL_CONVOP(t1, t2, f) |
#define | INSTALL_NCUNOP(op, t, f) |
#define | INSTALL_UNOP(op, t, f) |
#define | INSTALL_WIDENOP(t1, t2, f) |
#define | NULLASSIGNOPDECL(name) |
#define | UNOPDECL(name, a) |
Functions | |
void | install_ops (void) |
#define ASSIGNANYOPDECL | ( | name | ) |
#define ASSIGNOPDECL | ( | name | ) |
#define BINOPDECL | ( | name, | |
a1, | |||
a2 | |||
) |
#define CAST_BINOP_ARGS | ( | t1, | |
t2 | |||
) |
Definition at line 79 of file ops.h.
Referenced by oct_assignop_assign(), oct_binop_add_cdm_scm(), oct_binop_add_cdm_sm(), oct_binop_add_dm_scm(), oct_binop_add_dm_sm(), oct_binop_add_scm_cdm(), oct_binop_add_scm_dm(), oct_binop_add_sm_cdm(), oct_binop_add_sm_dm(), oct_binop_div(), oct_binop_div_scm_cdm(), oct_binop_div_scm_dm(), oct_binop_div_scm_pm(), oct_binop_div_sm_cdm(), oct_binop_div_sm_dm(), oct_binop_div_sm_pm(), oct_binop_dmsdiv(), oct_binop_dmspow(), oct_binop_el_and(), oct_binop_el_and_pm(), oct_binop_el_div(), oct_binop_el_ldiv(), oct_binop_el_or(), oct_binop_el_or_pm(), oct_binop_el_pow(), oct_binop_eq(), oct_binop_eq_pm(), oct_binop_herm_ldiv(), oct_binop_herm_mul(), oct_binop_ldiv(), oct_binop_ldiv_cdm_scm(), oct_binop_ldiv_cdm_sm(), oct_binop_ldiv_dm_scm(), oct_binop_ldiv_dm_sm(), oct_binop_ldiv_pm_scm(), oct_binop_ldiv_pm_sm(), oct_binop_mul(), oct_binop_mul_cdm_scm(), oct_binop_mul_cdm_sm(), oct_binop_mul_dm_scm(), oct_binop_mul_dm_sm(), oct_binop_mul_herm(), oct_binop_mul_pm_scm(), oct_binop_mul_pm_sm(), oct_binop_mul_scm_cdm(), oct_binop_mul_scm_dm(), oct_binop_mul_scm_pm(), oct_binop_mul_sm_cdm(), oct_binop_mul_sm_dm(), oct_binop_mul_sm_pm(), oct_binop_mul_trans(), oct_binop_ne(), oct_binop_ne_pm(), oct_binop_pow(), oct_binop_sdmldiv(), oct_binop_sub_cdm_scm(), oct_binop_sub_cdm_sm(), oct_binop_sub_dm_scm(), oct_binop_sub_dm_sm(), oct_binop_sub_scm_cdm(), oct_binop_sub_scm_dm(), oct_binop_sub_sm_cdm(), oct_binop_sub_sm_dm(), oct_binop_trans_ldiv(), oct_binop_trans_mul(), oct_catop_b_sbm(), oct_catop_b_sm(), oct_catop_bm_sbm(), oct_catop_bm_sm(), oct_catop_chm_m(), oct_catop_chm_s(), oct_catop_cm_scm(), oct_catop_cm_sm(), oct_catop_cs_scm(), oct_catop_cs_sm(), oct_catop_m_chm(), oct_catop_m_sbm(), oct_catop_m_scm(), oct_catop_m_sm(), oct_catop_matrix_struct(), oct_catop_s_chm(), oct_catop_s_sbm(), oct_catop_s_scm(), oct_catop_s_sm(), oct_catop_sbm_b(), oct_catop_sbm_bm(), oct_catop_sbm_m(), oct_catop_sbm_s(), oct_catop_scm_cm(), oct_catop_scm_cs(), oct_catop_scm_m(), oct_catop_scm_s(), oct_catop_sm_b(), oct_catop_sm_bm(), oct_catop_sm_cm(), oct_catop_sm_cs(), oct_catop_sm_m(), oct_catop_sm_s(), and oct_catop_struct_matrix().
#define CAST_CONV_ARG | ( | t | ) | t v = dynamic_cast<t> (a) |
Definition at line 83 of file ops.h.
Referenced by default_numeric_conversion_function(), default_numeric_demotion_function(), oct_conv_bool_matrix_conv(), oct_conv_bool_matrix_to_double_matrix(), oct_conv_complex_diag_matrix_to_complex_matrix(), oct_conv_complex_diag_matrix_to_float_complex_diag_matrix(), oct_conv_complex_matrix_conv(), oct_conv_complex_matrix_to_float_complex_matrix(), oct_conv_complex_to_float_complex(), oct_conv_diag_matrix_to_float_diag_matrix(), oct_conv_diag_matrix_to_matrix(), oct_conv_float_complex_diag_matrix_to_complex_diag_matrix(), oct_conv_float_complex_diag_matrix_to_float_complex_matrix(), oct_conv_float_complex_matrix_conv(), oct_conv_float_complex_matrix_to_complex_matrix(), oct_conv_float_complex_to_complex(), oct_conv_float_diag_matrix_to_diag_matrix(), oct_conv_float_diag_matrix_to_float_matrix(), oct_conv_float_matrix_to_matrix(), oct_conv_float_to_scalar(), oct_conv_matrix_conv(), oct_conv_matrix_to_float_matrix(), oct_conv_perm_matrix_to_matrix(), oct_conv_range_to_matrix(), oct_conv_sparse_bool_matrix_conv(), oct_conv_sparse_complex_matrix_conv(), and oct_conv_sparse_matrix_conv().
#define CAST_UNOP_ARG | ( | t | ) | t v = dynamic_cast<t> (a) |
Definition at line 76 of file ops.h.
Referenced by oct_unop_hermitian(), oct_unop_not(), oct_unop_scalar_transpose(), oct_unop_transpose(), oct_unop_uminus(), and oct_unop_uplus().
#define CATOP_NONCONFORMANT | ( | msg | ) |
#define CATOPDECL | ( | name, | |
a1, | |||
a2 | |||
) |
#define CONVDECL | ( | name | ) |
#define CONVDECLX | ( | name | ) |
#define DEFASSIGNANYOP_FN | ( | name, | |
t1, | |||
f | |||
) |
#define DEFASSIGNOP | ( | name, | |
t1, | |||
t2 | |||
) | ASSIGNOPDECL (name) |
#define DEFASSIGNOP_FN | ( | name, | |
t1, | |||
t2, | |||
f | |||
) |
#define DEFBINOP_FN | ( | name, | |
t1, | |||
t2, | |||
f | |||
) |
#define DEFBINOP_OP | ( | name, | |
t1, | |||
t2, | |||
op | |||
) |
#define DEFCATOP_FN | ( | name, | |
t1, | |||
t2, | |||
f | |||
) |
#define DEFCMPLXCMPOP_OP | ( | name, | |
t1, | |||
t2, | |||
op | |||
) |
#define DEFCONVFN | ( | name, | |
tfrom, | |||
tto | |||
) | DEFCONVFNX2 (name, tfrom, CONCAT2(tto, _matrix), CONCAT2(tto, _)) |
#define DEFCONVFN2 | ( | name, | |
tfrom, | |||
sm, | |||
tto | |||
) | DEFCONVFNX2 (name, CONCAT3(tfrom, _, sm), CONCAT2(tto, _matrix), CONCAT2(tto, _)) |
#define DEFCONVFNX | ( | name, | |
tfrom, | |||
ovtto, | |||
tto, | |||
e | |||
) |
#define DEFCONVFNX2 | ( | name, | |
tfrom, | |||
ovtto, | |||
e | |||
) |
#define DEFDBLCONVFN | ( | name, | |
ovtfrom, | |||
e | |||
) |
#define DEFFLTCONVFN | ( | name, | |
ovtfrom, | |||
e | |||
) |
#define DEFNCUNOP_METHOD | ( | name, | |
t, | |||
method | |||
) |
#define DEFNDASSIGNOP_FN | ( | name, | |
t1, | |||
t2, | |||
e, | |||
f | |||
) |
#define DEFNDASSIGNOP_FNOP | ( | name, | |
t1, | |||
t2, | |||
f, | |||
fnop | |||
) |
#define DEFNDASSIGNOP_OP | ( | name, | |
t1, | |||
t2, | |||
f, | |||
op | |||
) |
#define DEFNDBINOP_FN | ( | name, | |
t1, | |||
t2, | |||
e1, | |||
e2, | |||
f | |||
) |
#define DEFNDBINOP_OP | ( | name, | |
t1, | |||
t2, | |||
e1, | |||
e2, | |||
op | |||
) |
#define DEFNDCATOP_FN | ( | name, | |
t1, | |||
t2, | |||
e1, | |||
e2, | |||
f | |||
) |
#define DEFNDCATOP_FN2 | ( | name, | |
t1, | |||
t2, | |||
tc1, | |||
tc2, | |||
e1, | |||
e2, | |||
f | |||
) |
#define DEFNDCHARCATOP_FN | ( | name, | |
t1, | |||
t2, | |||
f | |||
) |
#define DEFNDCMPLXCMPOP_FN | ( | name, | |
t1, | |||
t2, | |||
e1, | |||
e2, | |||
f | |||
) |
#define DEFNDUNOP_FN | ( | name, | |
t, | |||
e, | |||
f | |||
) |
#define DEFNDUNOP_OP | ( | name, | |
t, | |||
e, | |||
op | |||
) |
#define DEFNULLASSIGNOP_FN | ( | name, | |
t, | |||
f | |||
) |
#define DEFSCALARBOOLOP_OP | ( | name, | |
t1, | |||
t2, | |||
op | |||
) |
#define DEFSTRDBLCONVFN | ( | name, | |
tfrom | |||
) | DEFCONVFNX(name, tfrom, matrix, , char_) |
#define DEFSTRFLTCONVFN | ( | name, | |
tfrom | |||
) | DEFCONVFNX(name, tfrom, float_matrix, Float, char_) |
#define DEFSTRINTCONVFN | ( | name, | |
tto | |||
) | DEFCONVFNX(name, char_matrix_str, CONCAT2(tto, _matrix), tto, char_) |
#define DEFUNOP_FN | ( | name, | |
t, | |||
f | |||
) |
#define DEFUNOP_OP | ( | name, | |
t, | |||
op | |||
) |
#define INSTALL_ASSIGNANYOP | ( | op, | |
t1, | |||
f | |||
) |
#define INSTALL_ASSIGNCONV | ( | t1, | |
t2, | |||
tr | |||
) |
Definition at line 64 of file ops.h.
Referenced by install_b_b_ops(), install_b_bm_ops(), install_b_sbm_ops(), install_base_type_conversions(), install_bm_sbm_ops(), install_cdm_cdm_ops(), install_cm_scm_ops(), install_cm_sm_ops(), install_cs_cm_ops(), install_cs_cs_ops(), install_cs_m_ops(), install_cs_s_ops(), install_cs_scm_ops(), install_cs_sm_ops(), install_dm_dm_ops(), install_fcdm_fcdm_ops(), install_fcs_fcm_ops(), install_fcs_fcs_ops(), install_fcs_fm_ops(), install_fcs_fs_ops(), install_fdm_fdm_ops(), install_fm_fcm_ops(), install_fm_fcs_ops(), install_fs_fcm_ops(), install_fs_fcs_ops(), install_fs_fm_ops(), install_fs_fs_ops(), install_LSHORT_RSHORT_ops(), install_m_cm_ops(), install_m_cs_ops(), install_m_scm_ops(), install_m_sm_ops(), install_pm_pm_ops(), install_range_ops(), install_s_cm_ops(), install_s_cs_ops(), install_s_m_ops(), install_s_s_ops(), install_s_scm_ops(), install_s_sm_ops(), install_sm_cm_ops(), install_sm_cs_ops(), and install_sm_scm_ops().
#define INSTALL_ASSIGNOP | ( | op, | |
t1, | |||
t2, | |||
f | |||
) |
Definition at line 55 of file ops.h.
Referenced by install_bm_b_ops(), install_bm_bm_ops(), install_bm_sbm_ops(), install_cell_ops(), install_cm_cm_ops(), install_cm_cs_ops(), install_cm_m_ops(), install_cm_s_ops(), install_cm_scm_ops(), install_cm_sm_ops(), install_fcm_fcm_ops(), install_fcm_fcs_ops(), install_fcm_fm_ops(), install_fcm_fs_ops(), install_fm_fm_ops(), install_fm_fs_ops(), install_m_m_ops(), install_m_s_ops(), install_m_sm_ops(), install_sbm_b_ops(), install_sbm_bm_ops(), install_sbm_sbm_ops(), install_scm_cm_ops(), install_scm_cs_ops(), install_scm_m_ops(), install_scm_s_ops(), install_scm_scm_ops(), install_scm_sm_ops(), install_sm_m_ops(), install_sm_s_ops(), install_sm_sm_ops(), install_str_m_ops(), install_str_s_ops(), and install_str_str_ops().
#define INSTALL_BINOP | ( | op, | |
t1, | |||
t2, | |||
f | |||
) |
Definition at line 46 of file ops.h.
Referenced by install_b_b_ops(), install_b_bm_ops(), install_b_sbm_ops(), install_bm_b_ops(), install_bm_bm_ops(), install_bm_sbm_ops(), install_cdm_cdm_ops(), install_cm_cm_ops(), install_cm_cs_ops(), install_cm_m_ops(), install_cm_s_ops(), install_cm_scm_ops(), install_cm_sm_ops(), install_cs_cm_ops(), install_cs_cs_ops(), install_cs_m_ops(), install_cs_s_ops(), install_cs_scm_ops(), install_cs_sm_ops(), install_dm_dm_ops(), install_dm_scm_ops(), install_dm_sm_ops(), install_fcdm_fcdm_ops(), install_fcm_fcm_ops(), install_fcm_fcs_ops(), install_fcm_fm_ops(), install_fcm_fs_ops(), install_fcn_ops(), install_fcs_fcm_ops(), install_fcs_fcs_ops(), install_fcs_fm_ops(), install_fcs_fs_ops(), install_fdm_fdm_ops(), install_fm_fcm_ops(), install_fm_fcs_ops(), install_fm_fm_ops(), install_fm_fs_ops(), install_fs_fcm_ops(), install_fs_fcs_ops(), install_fs_fm_ops(), install_fs_fs_ops(), install_LSHORT_RSHORT_ops(), install_m_cm_ops(), install_m_cs_ops(), install_m_m_ops(), install_m_s_ops(), install_m_scm_ops(), install_m_sm_ops(), install_MSHORT_SSHORT_ops(), install_pm_pm_ops(), install_pm_scm_ops(), install_pm_sm_ops(), install_range_ops(), install_s_cm_ops(), install_s_cs_ops(), install_s_m_ops(), install_s_s_ops(), install_s_scm_ops(), install_s_sm_ops(), install_sbm_b_ops(), install_sbm_bm_ops(), install_sbm_sbm_ops(), install_scm_cm_ops(), install_scm_cs_ops(), install_scm_m_ops(), install_scm_s_ops(), install_scm_scm_ops(), install_scm_sm_ops(), install_sm_cm_ops(), install_sm_cs_ops(), install_sm_m_ops(), install_sm_s_ops(), install_sm_scm_ops(), install_sm_sm_ops(), and install_str_str_ops().
#define INSTALL_CATOP | ( | t1, | |
t2, | |||
f | |||
) |
Definition at line 51 of file ops.h.
Referenced by install_b_b_ops(), install_b_bm_ops(), install_b_sbm_ops(), install_bm_b_ops(), install_bm_bm_ops(), install_bm_sbm_ops(), install_cell_ops(), install_chm_ops(), install_cm_cm_ops(), install_cm_cs_ops(), install_cm_m_ops(), install_cm_s_ops(), install_cm_scm_ops(), install_cm_sm_ops(), install_cs_cm_ops(), install_cs_cs_ops(), install_cs_m_ops(), install_cs_s_ops(), install_cs_scm_ops(), install_cs_sm_ops(), install_fcm_fcm_ops(), install_fcm_fcs_ops(), install_fcm_fm_ops(), install_fcm_fs_ops(), install_fcs_fcm_ops(), install_fcs_fcs_ops(), install_fcs_fm_ops(), install_fcs_fs_ops(), install_fm_fcm_ops(), install_fm_fcs_ops(), install_fm_fm_ops(), install_fm_fs_ops(), install_fs_fcm_ops(), install_fs_fcs_ops(), install_fs_fm_ops(), install_fs_fs_ops(), install_m_cm_ops(), install_m_cs_ops(), install_m_m_ops(), install_m_s_ops(), install_m_scm_ops(), install_m_sm_ops(), install_range_ops(), install_s_cm_ops(), install_s_cs_ops(), install_s_m_ops(), install_s_s_ops(), install_s_scm_ops(), install_s_sm_ops(), install_sbm_b_ops(), install_sbm_bm_ops(), install_sbm_sbm_ops(), install_scm_cm_ops(), install_scm_cs_ops(), install_scm_m_ops(), install_scm_s_ops(), install_scm_scm_ops(), install_scm_sm_ops(), install_sm_cm_ops(), install_sm_cs_ops(), install_sm_m_ops(), install_sm_s_ops(), install_sm_scm_ops(), install_sm_sm_ops(), install_str_m_ops(), install_str_s_ops(), install_str_str_ops(), and install_struct_ops().
#define INSTALL_CONVOP | ( | t1, | |
t2, | |||
f | |||
) |
Definition at line 68 of file ops.h.
Referenced by install_bm_bm_ops(), install_cdm_cdm_ops(), install_cm_cm_ops(), install_cs_cs_ops(), install_dm_dm_ops(), install_double_conv_ops(), install_fcdm_fcdm_ops(), install_fcm_fcm_ops(), install_fcs_fcs_ops(), install_fdm_fdm_ops(), install_float_conv_ops(), install_fm_fm_ops(), install_fs_fs_ops(), install_m_m_ops(), install_pm_pm_ops(), and install_sbm_sbm_ops().
#define INSTALL_NCUNOP | ( | op, | |
t, | |||
f | |||
) |
Definition at line 42 of file ops.h.
Referenced by install_bm_bm_ops(), install_cm_cm_ops(), install_cs_cs_ops(), install_fcm_fcm_ops(), install_fcs_fcs_ops(), install_fm_fm_ops(), install_fs_fs_ops(), install_m_m_ops(), install_s_s_ops(), and install_scm_scm_ops().
#define INSTALL_UNOP | ( | op, | |
t, | |||
f | |||
) |
Definition at line 38 of file ops.h.
Referenced by install_b_b_ops(), install_bm_bm_ops(), install_cdm_cdm_ops(), install_cell_ops(), install_chm_ops(), install_cm_cm_ops(), install_cs_cs_ops(), install_dm_dm_ops(), install_fcdm_fcdm_ops(), install_fcm_fcm_ops(), install_fcs_fcs_ops(), install_fdm_fdm_ops(), install_fm_fm_ops(), install_fs_fs_ops(), install_m_m_ops(), install_pm_pm_ops(), install_pm_sm_ops(), install_range_ops(), install_s_s_ops(), install_sbm_sbm_ops(), install_scm_scm_ops(), install_sm_sm_ops(), install_str_str_ops(), and install_struct_ops().
#define INSTALL_WIDENOP | ( | t1, | |
t2, | |||
f | |||
) |
Definition at line 72 of file ops.h.
Referenced by install_b_bm_ops(), install_b_sbm_ops(), install_base_type_conversions(), install_bm_sbm_ops(), install_cdm_cdm_ops(), install_cm_scm_ops(), install_cs_cm_ops(), install_cs_scm_ops(), install_cs_sm_ops(), install_dm_dm_ops(), install_fcdm_fcdm_ops(), install_fcs_fcm_ops(), install_fdm_fdm_ops(), install_fm_fcm_ops(), install_fs_fcm_ops(), install_fs_fm_ops(), install_m_cm_ops(), install_m_scm_ops(), install_m_sm_ops(), install_pm_pm_ops(), install_range_ops(), install_s_cm_ops(), install_s_m_ops(), install_s_scm_ops(), install_s_sm_ops(), install_sm_cm_ops(), and install_sm_scm_ops().
#define NULLASSIGNOPDECL | ( | name | ) |
#define UNOPDECL | ( | name, | |
a | |||
) |
Definition at line 138 of file ops.cc.
References install_b_b_ops(), install_b_bm_ops(), install_b_sbm_ops(), install_base_type_conversions(), install_bm_b_ops(), install_bm_bm_ops(), install_bm_sbm_ops(), install_cdm_cdm_ops(), install_cdm_cm_ops(), install_cdm_cs_ops(), install_cdm_dm_ops(), install_cdm_m_ops(), install_cdm_s_ops(), install_cell_ops(), install_chm_ops(), install_class_ops(), install_cm_cdm_ops(), install_cm_cm_ops(), install_cm_cs_ops(), install_cm_dm_ops(), install_cm_m_ops(), install_cm_pm_ops(), install_cm_s_ops(), install_cm_scm_ops(), install_cm_sm_ops(), install_cs_cm_ops(), install_cs_cs_ops(), install_cs_m_ops(), install_cs_s_ops(), install_cs_scm_ops(), install_cs_sm_ops(), install_dm_cdm_ops(), install_dm_cm_ops(), install_dm_cs_ops(), install_dm_dm_ops(), install_dm_m_ops(), install_dm_s_ops(), install_dm_scm_ops(), install_dm_sm_ops(), install_double_conv_ops(), install_fcdm_fcdm_ops(), install_fcdm_fcm_ops(), install_fcdm_fcs_ops(), install_fcdm_fdm_ops(), install_fcdm_fm_ops(), install_fcdm_fs_ops(), install_fcm_fcdm_ops(), install_fcm_fcm_ops(), install_fcm_fcs_ops(), install_fcm_fdm_ops(), install_fcm_fm_ops(), install_fcm_fs_ops(), install_fcm_pm_ops(), install_fcn_ops(), install_fcs_fcm_ops(), install_fcs_fcs_ops(), install_fcs_fm_ops(), install_fcs_fs_ops(), install_fdm_fcdm_ops(), install_fdm_fcm_ops(), install_fdm_fcs_ops(), install_fdm_fdm_ops(), install_fdm_fm_ops(), install_fdm_fs_ops(), install_float_conv_ops(), install_fm_fcdm_ops(), install_fm_fcm_ops(), install_fm_fcs_ops(), install_fm_fdm_ops(), install_fm_fm_ops(), install_fm_fs_ops(), install_fm_pm_ops(), install_fs_fcm_ops(), install_fs_fcs_ops(), install_fs_fm_ops(), install_fs_fs_ops(), install_i16_i16_ops(), install_i32_i32_ops(), install_i64_i64_ops(), install_i8_i8_ops(), install_int_concat_ops(), install_int_conv_ops(), install_m_cdm_ops(), install_m_cm_ops(), install_m_cs_ops(), install_m_dm_ops(), install_m_m_ops(), install_m_pm_ops(), install_m_s_ops(), install_m_scm_ops(), install_m_sm_ops(), install_pm_cm_ops(), install_pm_fcm_ops(), install_pm_fm_ops(), install_pm_m_ops(), install_pm_pm_ops(), install_pm_scm_ops(), install_pm_sm_ops(), install_range_ops(), install_s_cm_ops(), install_s_cs_ops(), install_s_m_ops(), install_s_s_ops(), install_s_scm_ops(), install_s_sm_ops(), install_sbm_b_ops(), install_sbm_bm_ops(), install_sbm_sbm_ops(), install_scm_cm_ops(), install_scm_cs_ops(), install_scm_m_ops(), install_scm_s_ops(), install_scm_scm_ops(), install_scm_sm_ops(), install_sm_cm_ops(), install_sm_cs_ops(), install_sm_m_ops(), install_sm_s_ops(), install_sm_scm_ops(), install_sm_sm_ops(), install_str_m_ops(), install_str_s_ops(), install_str_str_ops(), install_struct_ops(), install_ui16_ui16_ops(), install_ui32_ui32_ops(), install_ui64_ui64_ops(), and install_ui8_ui8_ops().
Referenced by octave_initialize_interpreter().