26#if defined (HAVE_CONFIG_H)
48DEFUNOP (transpose, float_diag_matrix)
51 return octave_value (v.float_diag_matrix_value ().transpose ());
56DEFBINOP_OP (add, float_diag_matrix, float_diag_matrix, +)
57DEFBINOP_OP (sub, float_diag_matrix, float_diag_matrix, -)
58DEFBINOP_OP (mul, float_diag_matrix, float_diag_matrix, *)
60DEFBINOP (div, float_diag_matrix, float_diag_matrix)
65 return xdiv (v1.float_diag_matrix_value (),
69DEFBINOP (ldiv, float_diag_matrix, float_diag_matrix)
74 return xleftdiv (v1.float_diag_matrix_value (),
78CONVDECL (float_diag_matrix_to_float_matrix)
112 float_diag_matrix_to_float_matrix);
115OCTAVE_END_NAMESPACE(octave)
virtual FloatDiagMatrix float_diag_matrix_value(bool=false) const
OCTAVE_BEGIN_NAMESPACE(octave) static octave_value daspk_fcn
void install_fdm_fdm_ops(octave::type_info &ti)
const octave_base_value & a2
const octave_char_matrix & v2
#define DEFUNOP_OP(name, t, op)
#define DEFBINOP(name, t1, t2)
#define DEFBINOP_OP(name, t1, t2, op)
#define INSTALL_ASSIGNCONV_TI(ti, t1, t2, tr)
#define OCTAVE_CAST_BASE_VALUE(T, T_VAL, BASE_VAL)
#define INSTALL_BINOP_TI(ti, op, t1, t2, f)
#define INSTALL_WIDENOP_TI(ti, t1, t2, f)
#define INSTALL_UNOP_TI(ti, op, t, f)
octave_value op_uplus(const octave_value &a)
octave_value op_add(const octave_value &a1, const octave_value &a2)
octave_value op_uminus(const octave_value &a)
octave_value op_transpose(const octave_value &a)
octave_value op_sub(const octave_value &a1, const octave_value &a2)
octave_value op_mul(const octave_value &a1, const octave_value &a2)
octave_value op_hermitian(const octave_value &a)
octave_value op_ldiv(const octave_value &a1, const octave_value &a2)
octave_value op_div(const octave_value &a1, const octave_value &a2)
Matrix xdiv(const Matrix &a, const SparseMatrix &b, MatrixType &typ)
Matrix xleftdiv(const SparseMatrix &a, const Matrix &b, MatrixType &typ)