GNU Octave
9.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
sparse-xdiv.h
Go to the documentation of this file.
1
////////////////////////////////////////////////////////////////////////
2
//
3
// Copyright (C) 1998-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 (octave_sparse_xdiv_h)
27
#define octave_sparse_xdiv_h 1
28
29
#include "octave-config.h"
30
31
#include "
oct-cmplx.h
"
32
#include "
MatrixType.h
"
33
34
class
DiagMatrix
;
35
class
ComplexDiagMatrix
;
36
class
SparseMatrix
;
37
class
SparseComplexMatrix
;
38
39
OCTAVE_BEGIN_NAMESPACE
(
octave
)
40
41
extern
Matrix
xdiv
(
const
Matrix
& a,
const
SparseMatrix
& b,
MatrixType
& typ);
42
extern
ComplexMatrix
xdiv
(
const
Matrix
& a,
const
SparseComplexMatrix
& b,
43
MatrixType
& typ);
44
extern
ComplexMatrix
xdiv
(
const
ComplexMatrix
& a,
const
SparseMatrix
& b,
45
MatrixType
& typ);
46
extern
ComplexMatrix
xdiv
(
const
ComplexMatrix
& a,
47
const
SparseComplexMatrix
& b,
MatrixType
& typ);
48
49
extern
SparseMatrix
xdiv
(
const
SparseMatrix
& a,
const
SparseMatrix
& b,
50
MatrixType
& typ);
51
extern
SparseComplexMatrix
xdiv
(
const
SparseMatrix
& a,
52
const
SparseComplexMatrix
& b,
MatrixType
& typ);
53
extern
SparseComplexMatrix
xdiv
(
const
SparseComplexMatrix
& a,
54
const
SparseMatrix
& b,
MatrixType
& typ);
55
extern
SparseComplexMatrix
xdiv
(
const
SparseComplexMatrix
& a,
56
const
SparseComplexMatrix
& b,
MatrixType
& typ);
57
58
extern
SparseMatrix
xdiv
(
const
SparseMatrix
& a,
59
const
DiagMatrix
& b,
MatrixType
& typ);
60
extern
SparseComplexMatrix
xdiv
(
const
SparseMatrix
& a,
61
const
ComplexDiagMatrix
& b,
MatrixType
& typ);
62
extern
SparseComplexMatrix
xdiv
(
const
SparseComplexMatrix
& a,
63
const
DiagMatrix
& b,
MatrixType
& typ);
64
extern
SparseComplexMatrix
xdiv
(
const
SparseComplexMatrix
& a,
65
const
ComplexDiagMatrix
& b,
MatrixType
& typ);
66
67
extern
Matrix
elem_xdiv
(
double
a,
const
SparseMatrix
& b);
68
extern
ComplexMatrix
elem_xdiv
(
double
a,
const
SparseComplexMatrix
& b);
69
extern
ComplexMatrix
elem_xdiv
(
const
Complex
& a,
const
SparseMatrix
& b);
70
extern
ComplexMatrix
elem_xdiv
(
const
Complex
& a,
71
const
SparseComplexMatrix
& b);
72
73
extern
Matrix
xleftdiv
(
const
SparseMatrix
& a,
const
Matrix
& b,
74
MatrixType
& typ);
75
extern
ComplexMatrix
xleftdiv
(
const
SparseMatrix
& a,
const
ComplexMatrix
& b,
76
MatrixType
& typ);
77
extern
ComplexMatrix
xleftdiv
(
const
SparseComplexMatrix
& a,
const
Matrix
& b,
78
MatrixType
& typ);
79
extern
ComplexMatrix
xleftdiv
(
const
SparseComplexMatrix
& a,
80
const
ComplexMatrix
& b,
MatrixType
& typ);
81
82
extern
SparseMatrix
xleftdiv
(
const
SparseMatrix
& a,
const
SparseMatrix
& b,
83
MatrixType
& typ);
84
extern
SparseComplexMatrix
xleftdiv
(
const
SparseMatrix
& a,
85
const
SparseComplexMatrix
& b,
86
MatrixType
& typ);
87
extern
SparseComplexMatrix
xleftdiv
(
const
SparseComplexMatrix
& a,
88
const
SparseMatrix
& b,
MatrixType
& typ);
89
extern
SparseComplexMatrix
xleftdiv
(
const
SparseComplexMatrix
& a,
90
const
SparseComplexMatrix
& b,
91
MatrixType
& typ);
92
93
extern
SparseMatrix
xleftdiv
(
const
DiagMatrix
&,
const
SparseMatrix
&,
94
MatrixType
&);
95
extern
SparseComplexMatrix
xleftdiv
(
const
ComplexDiagMatrix
&,
96
const
SparseMatrix
&,
97
MatrixType
&);
98
extern
SparseComplexMatrix
xleftdiv
(
const
DiagMatrix
&,
99
const
SparseComplexMatrix
&,
100
MatrixType
&);
101
extern
SparseComplexMatrix
xleftdiv
(
const
ComplexDiagMatrix
&,
102
const
SparseComplexMatrix
&,
103
MatrixType
&);
104
105
OCTAVE_END_NAMESPACE(
octave
)
106
107
#endif
MatrixType.h
ComplexDiagMatrix
Definition:
CDiagMatrix.h:42
ComplexMatrix
Definition:
CMatrix.h:43
DiagMatrix
Definition:
dDiagMatrix.h:40
MatrixType
Definition:
MatrixType.h:37
Matrix
Definition:
dMatrix.h:42
SparseComplexMatrix
Definition:
CSparse.h:47
SparseMatrix
Definition:
dSparse.h:45
OCTAVE_BEGIN_NAMESPACE
OCTAVE_BEGIN_NAMESPACE(octave) static octave_value daspk_fcn
octave
Definition:
file-ops.cc:60
oct-cmplx.h
Complex
std::complex< double > Complex
Definition:
oct-cmplx.h:33
elem_xdiv
Matrix elem_xdiv(double a, const SparseMatrix &b)
Definition:
sparse-xdiv.cc:376
xdiv
Matrix xdiv(const Matrix &a, const SparseMatrix &b, MatrixType &typ)
Definition:
sparse-xdiv.cc:137
xleftdiv
Matrix xleftdiv(const SparseMatrix &a, const Matrix &b, MatrixType &typ)
Definition:
sparse-xdiv.cc:469
libinterp
corefcn
sparse-xdiv.h
Generated on Sun Mar 17 2024 22:36:45 for GNU Octave by
1.9.1