Mercurial > hg > octave-nkf
diff src/sparse-xdiv.cc @ 5785:6b9cec830d72
[project @ 2006-05-03 19:32:46 by dbateman]
author | dbateman |
---|---|
date | Wed, 03 May 2006 19:32:48 +0000 |
parents | 233d98d95659 |
children | 93c65f2a5668 |
line wrap: on
line diff
--- a/src/sparse-xdiv.cc +++ b/src/sparse-xdiv.cc @@ -116,14 +116,14 @@ // -*- 1 -*- Matrix -xdiv (const Matrix& a, const SparseMatrix& b, SparseType &typ) +xdiv (const Matrix& a, const SparseMatrix& b, MatrixType &typ) { if (! mx_div_conform (a, b)) return Matrix (); Matrix atmp = a.transpose (); SparseMatrix btmp = b.transpose (); - SparseType btyp = typ.transpose (); + MatrixType btyp = typ.transpose (); octave_idx_type info; double rcond = 0.0; @@ -136,14 +136,14 @@ // -*- 2 -*- ComplexMatrix -xdiv (const Matrix& a, const SparseComplexMatrix& b, SparseType &typ) +xdiv (const Matrix& a, const SparseComplexMatrix& b, MatrixType &typ) { if (! mx_div_conform (a, b)) return ComplexMatrix (); Matrix atmp = a.transpose (); SparseComplexMatrix btmp = b.hermitian (); - SparseType btyp = typ.transpose (); + MatrixType btyp = typ.transpose (); octave_idx_type info; double rcond = 0.0; @@ -156,14 +156,14 @@ // -*- 3 -*- ComplexMatrix -xdiv (const ComplexMatrix& a, const SparseMatrix& b, SparseType &typ) +xdiv (const ComplexMatrix& a, const SparseMatrix& b, MatrixType &typ) { if (! mx_div_conform (a, b)) return ComplexMatrix (); ComplexMatrix atmp = a.hermitian (); SparseMatrix btmp = b.transpose (); - SparseType btyp = typ.transpose (); + MatrixType btyp = typ.transpose (); octave_idx_type info; double rcond = 0.0; @@ -176,14 +176,14 @@ // -*- 4 -*- ComplexMatrix -xdiv (const ComplexMatrix& a, const SparseComplexMatrix& b, SparseType &typ) +xdiv (const ComplexMatrix& a, const SparseComplexMatrix& b, MatrixType &typ) { if (! mx_div_conform (a, b)) return ComplexMatrix (); ComplexMatrix atmp = a.hermitian (); SparseComplexMatrix btmp = b.hermitian (); - SparseType btyp = typ.transpose (); + MatrixType btyp = typ.transpose (); octave_idx_type info; double rcond = 0.0; @@ -196,14 +196,14 @@ // -*- 5 -*- SparseMatrix -xdiv (const SparseMatrix& a, const SparseMatrix& b, SparseType &typ) +xdiv (const SparseMatrix& a, const SparseMatrix& b, MatrixType &typ) { if (! mx_div_conform (a, b)) return SparseMatrix (); SparseMatrix atmp = a.transpose (); SparseMatrix btmp = b.transpose (); - SparseType btyp = typ.transpose (); + MatrixType btyp = typ.transpose (); octave_idx_type info; double rcond = 0.0; @@ -216,14 +216,14 @@ // -*- 6 -*- SparseComplexMatrix -xdiv (const SparseMatrix& a, const SparseComplexMatrix& b, SparseType &typ) +xdiv (const SparseMatrix& a, const SparseComplexMatrix& b, MatrixType &typ) { if (! mx_div_conform (a, b)) return SparseComplexMatrix (); SparseMatrix atmp = a.transpose (); SparseComplexMatrix btmp = b.hermitian (); - SparseType btyp = typ.transpose (); + MatrixType btyp = typ.transpose (); octave_idx_type info; double rcond = 0.0; @@ -236,14 +236,14 @@ // -*- 7 -*- SparseComplexMatrix -xdiv (const SparseComplexMatrix& a, const SparseMatrix& b, SparseType &typ) +xdiv (const SparseComplexMatrix& a, const SparseMatrix& b, MatrixType &typ) { if (! mx_div_conform (a, b)) return SparseComplexMatrix (); SparseComplexMatrix atmp = a.hermitian (); SparseMatrix btmp = b.transpose (); - SparseType btyp = typ.transpose (); + MatrixType btyp = typ.transpose (); octave_idx_type info; double rcond = 0.0; @@ -256,14 +256,14 @@ // -*- 8 -*- SparseComplexMatrix -xdiv (const SparseComplexMatrix& a, const SparseComplexMatrix& b, SparseType &typ) +xdiv (const SparseComplexMatrix& a, const SparseComplexMatrix& b, MatrixType &typ) { if (! mx_div_conform (a, b)) return SparseComplexMatrix (); SparseComplexMatrix atmp = a.hermitian (); SparseComplexMatrix btmp = b.hermitian (); - SparseType btyp = typ.transpose (); + MatrixType btyp = typ.transpose (); octave_idx_type info; double rcond = 0.0; @@ -377,7 +377,7 @@ // -*- 1 -*- Matrix -xleftdiv (const SparseMatrix& a, const Matrix& b, SparseType &typ) +xleftdiv (const SparseMatrix& a, const Matrix& b, MatrixType &typ) { if (! mx_leftdiv_conform (a, b)) return Matrix (); @@ -389,7 +389,7 @@ // -*- 2 -*- ComplexMatrix -xleftdiv (const SparseMatrix& a, const ComplexMatrix& b, SparseType &typ) +xleftdiv (const SparseMatrix& a, const ComplexMatrix& b, MatrixType &typ) { if (! mx_leftdiv_conform (a, b)) return ComplexMatrix (); @@ -401,7 +401,7 @@ // -*- 3 -*- SparseMatrix -xleftdiv (const SparseMatrix& a, const SparseMatrix& b, SparseType &typ) +xleftdiv (const SparseMatrix& a, const SparseMatrix& b, MatrixType &typ) { if (! mx_leftdiv_conform (a, b)) return SparseMatrix (); @@ -413,7 +413,7 @@ // -*- 4 -*- SparseComplexMatrix -xleftdiv (const SparseMatrix& a, const SparseComplexMatrix& b, SparseType &typ) +xleftdiv (const SparseMatrix& a, const SparseComplexMatrix& b, MatrixType &typ) { if (! mx_leftdiv_conform (a, b)) return SparseComplexMatrix (); @@ -425,7 +425,7 @@ // -*- 5 -*- ComplexMatrix -xleftdiv (const SparseComplexMatrix& a, const Matrix& b, SparseType &typ) +xleftdiv (const SparseComplexMatrix& a, const Matrix& b, MatrixType &typ) { if (! mx_leftdiv_conform (a, b)) return ComplexMatrix (); @@ -437,7 +437,7 @@ // -*- 6 -*- ComplexMatrix -xleftdiv (const SparseComplexMatrix& a, const ComplexMatrix& b, SparseType &typ) +xleftdiv (const SparseComplexMatrix& a, const ComplexMatrix& b, MatrixType &typ) { if (! mx_leftdiv_conform (a, b)) return ComplexMatrix (); @@ -449,7 +449,7 @@ // -*- 7 -*- SparseComplexMatrix -xleftdiv (const SparseComplexMatrix& a, const SparseMatrix& b, SparseType &typ) +xleftdiv (const SparseComplexMatrix& a, const SparseMatrix& b, MatrixType &typ) { if (! mx_leftdiv_conform (a, b)) return SparseComplexMatrix (); @@ -462,7 +462,7 @@ // -*- 8 -*- SparseComplexMatrix xleftdiv (const SparseComplexMatrix& a, const SparseComplexMatrix& b, - SparseType &typ) + MatrixType &typ) { if (! mx_leftdiv_conform (a, b)) return SparseComplexMatrix ();