Mercurial > hg > octave-lyh
diff src/xdiv.h @ 4543:79df15d4470c
[project @ 2003-10-18 03:53:52 by jwe]
author | jwe |
---|---|
date | Sat, 18 Oct 2003 03:53:53 +0000 |
parents | 8b262e771614 |
children | 4c8a2e4e0717 |
line wrap: on
line diff
--- a/src/xdiv.h +++ b/src/xdiv.h @@ -28,6 +28,9 @@ class Matrix; class ComplexMatrix; +class NDArray; +class ComplexNDArray; + extern Matrix xdiv (const Matrix& a, const Matrix& b); extern ComplexMatrix xdiv (const Matrix& a, const ComplexMatrix& b); extern ComplexMatrix xdiv (const ComplexMatrix& a, const Matrix& b); @@ -38,6 +41,11 @@ extern ComplexMatrix x_el_div (const Complex a, const Matrix& b); extern ComplexMatrix x_el_div (const Complex a, const ComplexMatrix& b); +extern NDArray x_el_div (double a, const NDArray& b); +extern ComplexNDArray x_el_div (double a, const ComplexNDArray& b); +extern ComplexNDArray x_el_div (const Complex a, const NDArray& b); +extern ComplexNDArray x_el_div (const Complex a, const ComplexNDArray& b); + extern Matrix xleftdiv (const Matrix& a, const Matrix& b); extern ComplexMatrix xleftdiv (const Matrix& a, const ComplexMatrix& b); extern ComplexMatrix xleftdiv (const ComplexMatrix& a, const Matrix& b);