Mercurial > hg > octave-nkf
annotate src/xpow.h @ 14348:95c43fc8dbe1 stable rc-3-6-1-0
3.6.1 release candidate 0
* configure.ac (AC_INIT): Version is now 3.6.1-rc0.
(OCTAVE_RELEASE_DATE): Now 2012-02-07.
* liboctave/Makefile.am: Bump liboctave revision version.
* src/Makefile.am: Bump liboctave revision version.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 09 Feb 2012 11:25:04 -0500 |
parents | 72c96de7a403 |
children |
rev | line source |
---|---|
1 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
13039
diff
changeset
|
3 Copyright (C) 1993-2012 John W. Eaton |
1 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
1 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
1 | 20 |
21 */ | |
22 | |
383 | 23 #if !defined (octave_xpow_h) |
24 #define octave_xpow_h 1 | |
1 | 25 |
1651 | 26 #include "oct-cmplx.h" |
27 | |
164 | 28 class Matrix; |
29 class ComplexMatrix; | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
30 class FloatMatrix; |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
31 class FloatComplexMatrix; |
8382
9b20a4847056
implement scalar powers of diag matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
32 class DiagMatrix; |
9b20a4847056
implement scalar powers of diag matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
33 class ComplexDiagMatrix; |
9b20a4847056
implement scalar powers of diag matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
34 class FloatDiagMatrix; |
9b20a4847056
implement scalar powers of diag matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
35 class FloatComplexDiagMatrix; |
8958
6ccc12cc65ef
implement raising a permutation matrix to integer power
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
36 class PermMatrix; |
8382
9b20a4847056
implement scalar powers of diag matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
37 class NDArray; |
9b20a4847056
implement scalar powers of diag matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
38 class FloatNDArray; |
9b20a4847056
implement scalar powers of diag matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
39 class ComplexNDArray; |
9b20a4847056
implement scalar powers of diag matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
40 class FloatComplexNDArray; |
2086 | 41 class octave_value; |
9103
10bed8fbec99
optimize scalar .^ range operation
Jaroslav Hajek <highegg@gmail.com>
parents:
8960
diff
changeset
|
42 class Range; |
1 | 43 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
44 extern OCTINTERP_API octave_value xpow (double a, double b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
45 extern OCTINTERP_API octave_value xpow (double a, const Matrix& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
46 extern OCTINTERP_API octave_value xpow (double a, const Complex& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
47 extern OCTINTERP_API octave_value xpow (double a, const ComplexMatrix& b); |
1 | 48 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
49 extern OCTINTERP_API octave_value xpow (const Matrix& a, double b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
50 extern OCTINTERP_API octave_value xpow (const Matrix& a, const Complex& b); |
1 | 51 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
52 extern OCTINTERP_API octave_value xpow (const DiagMatrix& a, double b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
53 extern OCTINTERP_API octave_value xpow (const DiagMatrix& a, const Complex& b); |
8382
9b20a4847056
implement scalar powers of diag matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
54 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
55 extern OCTINTERP_API octave_value xpow (const PermMatrix& a, double b); |
8958
6ccc12cc65ef
implement raising a permutation matrix to integer power
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
56 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
57 extern OCTINTERP_API octave_value xpow (const Complex& a, double b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
58 extern OCTINTERP_API octave_value xpow (const Complex& a, const Matrix& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
59 extern OCTINTERP_API octave_value xpow (const Complex& a, const Complex& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
60 extern OCTINTERP_API octave_value xpow (const Complex& a, const ComplexMatrix& b); |
1 | 61 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
62 extern OCTINTERP_API octave_value xpow (const ComplexMatrix& a, double b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
63 extern OCTINTERP_API octave_value xpow (const ComplexMatrix& a, const Complex& b); |
1 | 64 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
65 extern OCTINTERP_API octave_value xpow (const ComplexDiagMatrix& a, double b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
66 extern OCTINTERP_API octave_value xpow (const ComplexDiagMatrix& a, const Complex& b); |
8382
9b20a4847056
implement scalar powers of diag matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
67 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
68 extern OCTINTERP_API octave_value elem_xpow (double a, const Matrix& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
69 extern OCTINTERP_API octave_value elem_xpow (double a, const ComplexMatrix& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
70 extern OCTINTERP_API octave_value elem_xpow (double a, const Range& r); |
1 | 71 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
72 extern OCTINTERP_API octave_value elem_xpow (const Matrix& a, double b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
73 extern OCTINTERP_API octave_value elem_xpow (const Matrix& a, const Matrix& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
74 extern OCTINTERP_API octave_value elem_xpow (const Matrix& a, const Complex& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
75 extern OCTINTERP_API octave_value elem_xpow (const Matrix& a, const ComplexMatrix& b); |
1 | 76 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
77 extern OCTINTERP_API octave_value elem_xpow (const Complex& a, const Matrix& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
78 extern OCTINTERP_API octave_value elem_xpow (const Complex& a, const ComplexMatrix& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
79 extern OCTINTERP_API octave_value elem_xpow (const Complex& a, const Range& r); |
1 | 80 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
81 extern OCTINTERP_API octave_value elem_xpow (const ComplexMatrix& a, double b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
82 extern OCTINTERP_API octave_value elem_xpow (const ComplexMatrix& a, const Matrix& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
83 extern OCTINTERP_API octave_value elem_xpow (const ComplexMatrix& a, const Complex& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
84 extern OCTINTERP_API octave_value elem_xpow (const ComplexMatrix& a, const ComplexMatrix& b); |
1 | 85 |
4543 | 86 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
87 extern OCTINTERP_API octave_value elem_xpow (double a, const NDArray& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
88 extern OCTINTERP_API octave_value elem_xpow (double a, const ComplexNDArray& b); |
4543 | 89 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
90 extern OCTINTERP_API octave_value elem_xpow (const NDArray& a, double b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
91 extern OCTINTERP_API octave_value elem_xpow (const NDArray& a, const NDArray& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
92 extern OCTINTERP_API octave_value elem_xpow (const NDArray& a, const Complex& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
93 extern OCTINTERP_API octave_value elem_xpow (const NDArray& a, const ComplexNDArray& b); |
4543 | 94 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
95 extern OCTINTERP_API octave_value elem_xpow (const Complex& a, const NDArray& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
96 extern OCTINTERP_API octave_value elem_xpow (const Complex& a, const ComplexNDArray& b); |
4543 | 97 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
98 extern OCTINTERP_API octave_value elem_xpow (const ComplexNDArray& a, double b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
99 extern OCTINTERP_API octave_value elem_xpow (const ComplexNDArray& a, const NDArray& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
100 extern OCTINTERP_API octave_value elem_xpow (const ComplexNDArray& a, const Complex& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
101 extern OCTINTERP_API octave_value elem_xpow (const ComplexNDArray& a, const ComplexNDArray& b); |
4543 | 102 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
103 extern OCTINTERP_API octave_value xpow (float a, float b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
104 extern OCTINTERP_API octave_value xpow (float a, const FloatMatrix& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
105 extern OCTINTERP_API octave_value xpow (float a, const FloatComplex& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
106 extern OCTINTERP_API octave_value xpow (float a, const FloatComplexMatrix& b); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
107 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
108 extern OCTINTERP_API octave_value xpow (const FloatMatrix& a, float b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
109 extern OCTINTERP_API octave_value xpow (const FloatMatrix& a, const FloatComplex& b); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
110 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
111 extern OCTINTERP_API octave_value xpow (const FloatDiagMatrix& a, float b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
112 extern OCTINTERP_API octave_value xpow (const FloatDiagMatrix& a, const FloatComplex& b); |
8382
9b20a4847056
implement scalar powers of diag matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
113 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
114 extern OCTINTERP_API octave_value xpow (const FloatComplex& a, float b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
115 extern OCTINTERP_API octave_value xpow (const FloatComplex& a, const FloatMatrix& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
116 extern OCTINTERP_API octave_value xpow (const FloatComplex& a, const FloatComplex& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
117 extern OCTINTERP_API octave_value xpow (const FloatComplex& a, const FloatComplexMatrix& b); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
118 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
119 extern OCTINTERP_API octave_value xpow (const FloatComplexMatrix& a, float b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
120 extern OCTINTERP_API octave_value xpow (const FloatComplexMatrix& a, const FloatComplex& b); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
121 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
122 extern OCTINTERP_API octave_value xpow (const FloatComplexDiagMatrix& a, float b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
123 extern OCTINTERP_API octave_value xpow (const FloatComplexDiagMatrix& a, const FloatComplex& b); |
8382
9b20a4847056
implement scalar powers of diag matrices
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
124 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
125 extern OCTINTERP_API octave_value elem_xpow (float a, const FloatMatrix& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
126 extern OCTINTERP_API octave_value elem_xpow (float a, const FloatComplexMatrix& b); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
127 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
128 extern OCTINTERP_API octave_value elem_xpow (const FloatMatrix& a, float b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
129 extern OCTINTERP_API octave_value elem_xpow (const FloatMatrix& a, const FloatMatrix& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
130 extern OCTINTERP_API octave_value elem_xpow (const FloatMatrix& a, const FloatComplex& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
131 extern OCTINTERP_API octave_value elem_xpow (const FloatMatrix& a, const FloatComplexMatrix& b); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
132 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
133 extern OCTINTERP_API octave_value elem_xpow (const FloatComplex& a, const FloatMatrix& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
134 extern OCTINTERP_API octave_value elem_xpow (const FloatComplex& a, const FloatComplexMatrix& b); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
135 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
136 extern OCTINTERP_API octave_value elem_xpow (const FloatComplexMatrix& a, float b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
137 extern OCTINTERP_API octave_value elem_xpow (const FloatComplexMatrix& a, const FloatMatrix& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
138 extern OCTINTERP_API octave_value elem_xpow (const FloatComplexMatrix& a, const FloatComplex& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
139 extern OCTINTERP_API octave_value elem_xpow (const FloatComplexMatrix& a, const FloatComplexMatrix& b); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
140 |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
141 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
142 extern OCTINTERP_API octave_value elem_xpow (float a, const FloatNDArray& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
143 extern OCTINTERP_API octave_value elem_xpow (float a, const FloatComplexNDArray& b); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
144 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
145 extern OCTINTERP_API octave_value elem_xpow (const FloatNDArray& a, float b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
146 extern OCTINTERP_API octave_value elem_xpow (const FloatNDArray& a, const FloatNDArray& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
147 extern OCTINTERP_API octave_value elem_xpow (const FloatNDArray& a, const FloatComplex& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
148 extern OCTINTERP_API octave_value elem_xpow (const FloatNDArray& a, const FloatComplexNDArray& b); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
149 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
150 extern OCTINTERP_API octave_value elem_xpow (const FloatComplex& a, const FloatNDArray& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
151 extern OCTINTERP_API octave_value elem_xpow (const FloatComplex& a, const FloatComplexNDArray& b); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
152 |
13039
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
153 extern OCTINTERP_API octave_value elem_xpow (const FloatComplexNDArray& a, float b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
154 extern OCTINTERP_API octave_value elem_xpow (const FloatComplexNDArray& a, const FloatNDArray& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
155 extern OCTINTERP_API octave_value elem_xpow (const FloatComplexNDArray& a, const FloatComplex& b); |
70d32160c90b
Make more symbols for export.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
11523
diff
changeset
|
156 extern OCTINTERP_API octave_value elem_xpow (const FloatComplexNDArray& a, const FloatComplexNDArray& b); |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
157 |
1 | 158 #endif |