1
|
1 // xdiv.h -*- C++ -*- |
|
2 /* |
|
3 |
1009
|
4 Copyright (C) 1992, 1993, 1994, 1995 John W. Eaton |
1
|
5 |
|
6 This file is part of Octave. |
|
7 |
|
8 Octave is free software; you can redistribute it and/or modify it |
|
9 under the terms of the GNU General Public License as published by the |
|
10 Free Software Foundation; either version 2, or (at your option) any |
|
11 later version. |
|
12 |
|
13 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
16 for more details. |
|
17 |
|
18 You should have received a copy of the GNU General Public License |
|
19 along with Octave; see the file COPYING. If not, write to the Free |
1315
|
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
1
|
21 |
|
22 */ |
|
23 |
383
|
24 #if !defined (octave_xdiv_h) |
|
25 #define octave_xdiv_h 1 |
1
|
26 |
1651
|
27 #include "oct-cmplx.h" |
|
28 |
164
|
29 class Matrix; |
|
30 class ComplexMatrix; |
1
|
31 |
1800
|
32 extern Matrix xdiv (const Matrix& a, const Matrix& b); |
|
33 extern ComplexMatrix xdiv (const Matrix& a, const ComplexMatrix& b); |
|
34 extern ComplexMatrix xdiv (const ComplexMatrix& a, const Matrix& b); |
|
35 extern ComplexMatrix xdiv (const ComplexMatrix& a, const ComplexMatrix& b); |
1
|
36 |
1800
|
37 extern Matrix x_el_div (double a, const Matrix& b); |
|
38 extern ComplexMatrix x_el_div (double a, const ComplexMatrix& b); |
|
39 extern ComplexMatrix x_el_div (const Complex a, const Matrix& b); |
|
40 extern ComplexMatrix x_el_div (const Complex a, const ComplexMatrix& b); |
1
|
41 |
1800
|
42 extern Matrix xleftdiv (const Matrix& a, const Matrix& b); |
|
43 extern ComplexMatrix xleftdiv (const Matrix& a, const ComplexMatrix& b); |
|
44 extern ComplexMatrix xleftdiv (const ComplexMatrix& a, const Matrix& b); |
|
45 extern ComplexMatrix xleftdiv (const ComplexMatrix& a, const ComplexMatrix& b); |
1
|
46 |
|
47 #endif |
|
48 |
|
49 /* |
|
50 ;;; Local Variables: *** |
|
51 ;;; mode: C++ *** |
|
52 ;;; page-delimiter: "^/\\*" *** |
|
53 ;;; End: *** |
|
54 */ |