comparison src/sparse-xdiv.h @ 10313:f3b65e1ae355

untabify src header files
author John W. Eaton <jwe@octave.org>
date Thu, 11 Feb 2010 12:16:43 -0500
parents cd96d29c5efa
children fd0a3ac60b0e
comparison
equal deleted inserted replaced
10312:cbc402e64d83 10313:f3b65e1ae355
32 class SparseMatrix; 32 class SparseMatrix;
33 class SparseComplexMatrix; 33 class SparseComplexMatrix;
34 34
35 extern Matrix xdiv (const Matrix& a, const SparseMatrix& b, MatrixType &typ); 35 extern Matrix xdiv (const Matrix& a, const SparseMatrix& b, MatrixType &typ);
36 extern ComplexMatrix xdiv (const Matrix& a, const SparseComplexMatrix& b, 36 extern ComplexMatrix xdiv (const Matrix& a, const SparseComplexMatrix& b,
37 MatrixType &typ); 37 MatrixType &typ);
38 extern ComplexMatrix xdiv (const ComplexMatrix& a, const SparseMatrix& b, 38 extern ComplexMatrix xdiv (const ComplexMatrix& a, const SparseMatrix& b,
39 MatrixType &typ); 39 MatrixType &typ);
40 extern ComplexMatrix xdiv (const ComplexMatrix& a, 40 extern ComplexMatrix xdiv (const ComplexMatrix& a,
41 const SparseComplexMatrix& b, MatrixType &typ); 41 const SparseComplexMatrix& b, MatrixType &typ);
42 42
43 extern SparseMatrix xdiv (const SparseMatrix& a, const SparseMatrix& b, 43 extern SparseMatrix xdiv (const SparseMatrix& a, const SparseMatrix& b,
44 MatrixType &typ); 44 MatrixType &typ);
45 extern SparseComplexMatrix xdiv (const SparseMatrix& a, 45 extern SparseComplexMatrix xdiv (const SparseMatrix& a,
46 const SparseComplexMatrix& b, MatrixType &typ); 46 const SparseComplexMatrix& b, MatrixType &typ);
47 extern SparseComplexMatrix xdiv (const SparseComplexMatrix& a, 47 extern SparseComplexMatrix xdiv (const SparseComplexMatrix& a,
48 const SparseMatrix& b, MatrixType &typ); 48 const SparseMatrix& b, MatrixType &typ);
49 extern SparseComplexMatrix xdiv (const SparseComplexMatrix& a, 49 extern SparseComplexMatrix xdiv (const SparseComplexMatrix& a,
50 const SparseComplexMatrix& b, MatrixType &typ); 50 const SparseComplexMatrix& b, MatrixType &typ);
51 51
52 extern SparseMatrix xdiv (const SparseMatrix& a, 52 extern SparseMatrix xdiv (const SparseMatrix& a,
53 const DiagMatrix& b, MatrixType &typ); 53 const DiagMatrix& b, MatrixType &typ);
54 extern SparseComplexMatrix xdiv (const SparseMatrix& a, 54 extern SparseComplexMatrix xdiv (const SparseMatrix& a,
55 const ComplexDiagMatrix& b, MatrixType &typ); 55 const ComplexDiagMatrix& b, MatrixType &typ);
56 extern SparseComplexMatrix xdiv (const SparseComplexMatrix& a, 56 extern SparseComplexMatrix xdiv (const SparseComplexMatrix& a,
57 const DiagMatrix& b, MatrixType &typ); 57 const DiagMatrix& b, MatrixType &typ);
58 extern SparseComplexMatrix xdiv (const SparseComplexMatrix& a, 58 extern SparseComplexMatrix xdiv (const SparseComplexMatrix& a,
59 const ComplexDiagMatrix& b, MatrixType &typ); 59 const ComplexDiagMatrix& b, MatrixType &typ);
60 60
61 extern Matrix x_el_div (double a, const SparseMatrix& b); 61 extern Matrix x_el_div (double a, const SparseMatrix& b);
62 extern ComplexMatrix x_el_div (double a, const SparseComplexMatrix& b); 62 extern ComplexMatrix x_el_div (double a, const SparseComplexMatrix& b);
63 extern ComplexMatrix x_el_div (const Complex a, const SparseMatrix& b); 63 extern ComplexMatrix x_el_div (const Complex a, const SparseMatrix& b);
64 extern ComplexMatrix x_el_div (const Complex a, 64 extern ComplexMatrix x_el_div (const Complex a,
65 const SparseComplexMatrix& b); 65 const SparseComplexMatrix& b);
66 66
67 extern Matrix xleftdiv (const SparseMatrix& a, const Matrix& b, 67 extern Matrix xleftdiv (const SparseMatrix& a, const Matrix& b,
68 MatrixType& typ); 68 MatrixType& typ);
69 extern ComplexMatrix xleftdiv (const SparseMatrix& a, const ComplexMatrix& b, 69 extern ComplexMatrix xleftdiv (const SparseMatrix& a, const ComplexMatrix& b,
70 MatrixType &typ); 70 MatrixType &typ);
71 extern ComplexMatrix xleftdiv (const SparseComplexMatrix& a, const Matrix& b, 71 extern ComplexMatrix xleftdiv (const SparseComplexMatrix& a, const Matrix& b,
72 MatrixType &typ); 72 MatrixType &typ);
73 extern ComplexMatrix xleftdiv (const SparseComplexMatrix& a, 73 extern ComplexMatrix xleftdiv (const SparseComplexMatrix& a,
74 const ComplexMatrix& b, MatrixType &typ); 74 const ComplexMatrix& b, MatrixType &typ);
75 75
76 extern SparseMatrix xleftdiv (const SparseMatrix& a, const SparseMatrix& b, 76 extern SparseMatrix xleftdiv (const SparseMatrix& a, const SparseMatrix& b,
77 MatrixType &typ); 77 MatrixType &typ);
78 extern SparseComplexMatrix xleftdiv (const SparseMatrix& a, 78 extern SparseComplexMatrix xleftdiv (const SparseMatrix& a,
79 const SparseComplexMatrix& b, MatrixType &typ); 79 const SparseComplexMatrix& b, MatrixType &typ);
80 extern SparseComplexMatrix xleftdiv (const SparseComplexMatrix& a, 80 extern SparseComplexMatrix xleftdiv (const SparseComplexMatrix& a,
81 const SparseMatrix& b, MatrixType &typ); 81 const SparseMatrix& b, MatrixType &typ);
82 extern SparseComplexMatrix xleftdiv (const SparseComplexMatrix& a, 82 extern SparseComplexMatrix xleftdiv (const SparseComplexMatrix& a,
83 const SparseComplexMatrix& b, MatrixType &typ); 83 const SparseComplexMatrix& b, MatrixType &typ);
84 84
85 extern SparseMatrix xleftdiv (const DiagMatrix&, const SparseMatrix&, MatrixType&); 85 extern SparseMatrix xleftdiv (const DiagMatrix&, const SparseMatrix&, MatrixType&);
86 extern SparseComplexMatrix xleftdiv (const ComplexDiagMatrix&, const SparseMatrix&, 86 extern SparseComplexMatrix xleftdiv (const ComplexDiagMatrix&, const SparseMatrix&,
87 MatrixType&); 87 MatrixType&);
88 extern SparseComplexMatrix xleftdiv (const DiagMatrix&, const SparseComplexMatrix&, 88 extern SparseComplexMatrix xleftdiv (const DiagMatrix&, const SparseComplexMatrix&,
89 MatrixType&); 89 MatrixType&);
90 extern SparseComplexMatrix xleftdiv (const ComplexDiagMatrix&, const SparseComplexMatrix&, 90 extern SparseComplexMatrix xleftdiv (const ComplexDiagMatrix&, const SparseComplexMatrix&,
91 MatrixType&); 91 MatrixType&);
92 92
93 #endif 93 #endif