GNU Octave  9.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
op-pm-pm.cc
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright (C) 2008-2024 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-perm.h"
34 #include "ov-re-mat.h"
35 #include "ov-scalar.h"
36 #include "ov-typeinfo.h"
37 #include "ops.h"
38 #include "xpow.h"
39 
41 
42 DEFUNOP (transpose, perm_matrix)
43 {
45  return octave_value (v.perm_matrix_value ().transpose ());
46 }
47 
48 DEFBINOP_OP (mul, perm_matrix, perm_matrix, *)
49 
50 DEFBINOP (div, perm_matrix, perm_matrix)
51 {
54 
55  return (v1.perm_matrix_value () * v2.perm_matrix_value ().inverse ());
56 }
57 
58 DEFBINOP (ldiv, perm_matrix, perm_matrix)
59 {
62 
63  return (v1.perm_matrix_value ().inverse () * v2.perm_matrix_value ());
64 }
65 
66 DEFBINOP (pow, perm_matrix, scalar)
67 {
70 
71  return xpow (v1.perm_matrix_value (), v2.scalar_value ());
72 }
73 
74 CONVDECL (perm_matrix_to_matrix)
75 {
77 
78  return new octave_matrix (v.matrix_value ());
79 }
80 
81 void
82 install_pm_pm_ops (octave::type_info& ti)
83 {
86 
91 
94  perm_matrix_to_matrix);
95 }
96 
97 OCTAVE_END_NAMESPACE(octave)
PermMatrix inverse() const
Definition: PermMatrix.cc:114
virtual PermMatrix perm_matrix_value() const
Definition: ov-base.cc:742
double scalar_value(bool frc_str_conv=false) const
Definition: ov-ch-mat.h:105
OCTAVE_BEGIN_NAMESPACE(octave) static octave_value daspk_fcn
octave_int< T > pow(const octave_int< T > &a, const octave_int< T > &b)
const octave_base_value & a2
return octave_value(v1.char_array_value() . concat(v2.char_array_value(), ra_idx),((a1.is_sq_string()||a2.is_sq_string()) ? '\'' :'"'))
const octave_char_matrix & v2
void install_pm_pm_ops(octave::type_info &ti)
Definition: op-pm-pm.cc:82
#define DEFBINOP(name, t1, t2)
Definition: ops.h:245
#define DEFBINOP_OP(name, t1, t2, op)
Definition: ops.h:250
#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:183
#define DEFUNOP(name, t)
Definition: ops.h:194
#define INSTALL_UNOP_TI(ti, op, t, f)
Definition: ops.h:62
octave_value op_transpose(const octave_value &a)
Definition: ov.h:1637
octave_value op_mul(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1665
octave_value op_hermitian(const octave_value &a)
Definition: ov.h:1638
octave_value op_ldiv(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1669
octave_value op_pow(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1668
octave_value op_div(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1666
octave_value xpow(const SparseMatrix &a, double b)
Definition: sparse-xpow.cc:62