comparison libinterp/corefcn/xdiv.h @ 31606:dfa5d9c3ae72

maint: merge stable to default
author Rik <rik@octave.org>
date Thu, 01 Dec 2022 14:28:07 -0800
parents 903fac22b29d e88a07dec498
children 5f11de0e7440
comparison
equal deleted inserted replaced
31604:9ecc95d840ca 31606:dfa5d9c3ae72
29 #include "octave-config.h" 29 #include "octave-config.h"
30 30
31 #include "mx-defs.h" 31 #include "mx-defs.h"
32 #include "MatrixType.h" 32 #include "MatrixType.h"
33 33
34 OCTAVE_NAMESPACE_BEGIN 34 OCTAVE_BEGIN_NAMESPACE(octave)
35 35
36 extern Matrix xdiv (const Matrix& a, const Matrix& b, MatrixType& typ); 36 extern Matrix xdiv (const Matrix& a, const Matrix& b, MatrixType& typ);
37 extern ComplexMatrix xdiv (const Matrix& a, const ComplexMatrix& b, 37 extern ComplexMatrix xdiv (const Matrix& a, const ComplexMatrix& b,
38 MatrixType& typ); 38 MatrixType& typ);
39 extern ComplexMatrix xdiv (const ComplexMatrix& a, const Matrix& b, 39 extern ComplexMatrix xdiv (const ComplexMatrix& a, const Matrix& b,
152 extern FloatComplexDiagMatrix xleftdiv (const FloatDiagMatrix& a, 152 extern FloatComplexDiagMatrix xleftdiv (const FloatDiagMatrix& a,
153 const FloatComplexDiagMatrix& b); 153 const FloatComplexDiagMatrix& b);
154 extern FloatComplexDiagMatrix xleftdiv (const FloatComplexDiagMatrix& a, 154 extern FloatComplexDiagMatrix xleftdiv (const FloatComplexDiagMatrix& a,
155 const FloatComplexDiagMatrix& b); 155 const FloatComplexDiagMatrix& b);
156 156
157 OCTAVE_NAMESPACE_END 157 OCTAVE_END_NAMESPACE(octave)
158 158
159 #endif 159 #endif