comparison liboctave/dMatrix.h @ 4329:d53c33d93440

[project @ 2003-02-18 20:00:48 by jwe]
author jwe
date Tue, 18 Feb 2003 20:08:20 +0000
parents 236c10efcde2
children f1fcc371e5ef
comparison
equal deleted inserted replaced
4328:f7b63f362168 4329:d53c33d93440
113 ColumnVector column (int i) const; 113 ColumnVector column (int i) const;
114 ColumnVector column (char *s) const; 114 ColumnVector column (char *s) const;
115 115
116 Matrix inverse (void) const; 116 Matrix inverse (void) const;
117 Matrix inverse (int& info) const; 117 Matrix inverse (int& info) const;
118 Matrix inverse (int& info, double& rcond, int force = 0) const; 118 Matrix inverse (int& info, double& rcond, int force = 0,
119 int calc_cond = 1) const;
119 120
120 Matrix pseudo_inverse (double tol = 0.0); 121 Matrix pseudo_inverse (double tol = 0.0);
121 122
122 ComplexMatrix fourier (void) const; 123 ComplexMatrix fourier (void) const;
123 ComplexMatrix ifourier (void) const; 124 ComplexMatrix ifourier (void) const;
125 ComplexMatrix fourier2d (void) const; 126 ComplexMatrix fourier2d (void) const;
126 ComplexMatrix ifourier2d (void) const; 127 ComplexMatrix ifourier2d (void) const;
127 128
128 DET determinant (void) const; 129 DET determinant (void) const;
129 DET determinant (int& info) const; 130 DET determinant (int& info) const;
130 DET determinant (int& info, double& rcond) const; 131 DET determinant (int& info, double& rcond, int calc_cond = 1) const;
131 132
132 Matrix solve (const Matrix& b) const; 133 Matrix solve (const Matrix& b) const;
133 Matrix solve (const Matrix& b, int& info) const; 134 Matrix solve (const Matrix& b, int& info) const;
134 Matrix solve (const Matrix& b, int& info, double& rcond) const; 135 Matrix solve (const Matrix& b, int& info, double& rcond) const;
135 Matrix solve (const Matrix& b, int& info, double& rcond, 136 Matrix solve (const Matrix& b, int& info, double& rcond,