GNU Octave 10.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 
Loading...
Searching...
No Matches
op-dm-dm.cc
Go to the documentation of this file.
1////////////////////////////////////////////////////////////////////////
2//
3// Copyright (C) 2008-2025 The Octave Project Developers
4//
5// See the file COPYRIGHT.md in the top-level directory of this
6// distribution or <https://octave.org/copyright/>.
7//
8// This file is part of Octave.
9//
10// Octave is free software: you can redistribute it and/or modify it
11// under the terms of the GNU General Public License as published by
12// the Free Software Foundation, either version 3 of the License, or
13// (at your option) any later version.
14//
15// Octave is distributed in the hope that it will be useful, but
16// WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18// GNU General Public License for more details.
19//
20// You should have received a copy of the GNU General Public License
21// along with Octave; see the file COPYING. If not, see
22// <https://www.gnu.org/licenses/>.
23//
24////////////////////////////////////////////////////////////////////////
25
26#if defined (HAVE_CONFIG_H)
27# include "config.h"
28#endif
29
30#include "errwarn.h"
31#include "ovl.h"
32#include "ov.h"
33#include "ov-re-mat.h"
34#include "ov-re-diag.h"
35#include "ov-flt-re-diag.h"
36#include "ov-typeinfo.h"
37#include "ops.h"
38#include "xdiv.h"
39#include "xpow.h"
40
42
43// matrix unary ops.
44
45DEFUNOP_OP (uplus, diag_matrix, /* no-op */)
46DEFUNOP_OP (uminus, diag_matrix, -)
47
48DEFUNOP (transpose, diag_matrix)
49{
51 return octave_value (v.diag_matrix_value ().transpose ());
52}
53
54// matrix by matrix ops.
55
56DEFBINOP_OP (add, diag_matrix, diag_matrix, +)
57DEFBINOP_OP (sub, diag_matrix, diag_matrix, -)
58DEFBINOP_OP (mul, diag_matrix, diag_matrix, *)
59
60DEFBINOP (div, diag_matrix, diag_matrix)
61{
64
65 return xdiv (v1.diag_matrix_value (),
67}
68
69DEFBINOP (ldiv, diag_matrix, diag_matrix)
70{
73
74 return xleftdiv (v1.diag_matrix_value (),
76}
77
78CONVDECL (diag_matrix_to_matrix)
79{
81
82 return new octave_matrix (v.matrix_value ());
83}
84
85void
103
104OCTAVE_END_NAMESPACE(octave)
virtual DiagMatrix diag_matrix_value(bool=false) const
Definition ov-base.cc:712
OCTAVE_BEGIN_NAMESPACE(octave) static octave_value daspk_fcn
void install_dm_dm_ops(octave::type_info &ti)
Definition op-dm-dm.cc:86
const octave_base_value & a2
const octave_char_matrix & v2
#define DEFUNOP_OP(name, t, op)
Definition ops.h:201
#define DEFBINOP(name, t1, t2)
Definition ops.h:248
#define DEFBINOP_OP(name, t1, t2, op)
Definition ops.h:253
#define INSTALL_ASSIGNCONV_TI(ti, t1, t2, tr)
Definition ops.h:88
#define OCTAVE_CAST_BASE_VALUE(T, T_VAL, BASE_VAL)
Definition ops.h:52
#define INSTALL_BINOP_TI(ti, op, t1, t2, f)
Definition ops.h:70
#define INSTALL_WIDENOP_TI(ti, t1, t2, f)
Definition ops.h:92
#define CONVDECL(name)
Definition ops.h:186
#define DEFUNOP(name, t)
Definition ops.h:197
#define INSTALL_UNOP_TI(ti, op, t, f)
Definition ops.h:62
octave_value op_uplus(const octave_value &a)
Definition ov.h:1649
octave_value op_add(const octave_value &a1, const octave_value &a2)
Definition ov.h:1678
octave_value op_uminus(const octave_value &a)
Definition ov.h:1650
octave_value op_transpose(const octave_value &a)
Definition ov.h:1652
octave_value op_sub(const octave_value &a1, const octave_value &a2)
Definition ov.h:1679
octave_value op_mul(const octave_value &a1, const octave_value &a2)
Definition ov.h:1680
octave_value op_hermitian(const octave_value &a)
Definition ov.h:1653
octave_value op_ldiv(const octave_value &a1, const octave_value &a2)
Definition ov.h:1684
octave_value op_div(const octave_value &a1, const octave_value &a2)
Definition ov.h:1681
Matrix xdiv(const Matrix &a, const SparseMatrix &b, MatrixType &typ)
Matrix xleftdiv(const SparseMatrix &a, const Matrix &b, MatrixType &typ)