comparison liboctave/CMatrix.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
138 ComplexColumnVector column (int i) const; 138 ComplexColumnVector column (int i) const;
139 ComplexColumnVector column (char *s) const; 139 ComplexColumnVector column (char *s) const;
140 140
141 ComplexMatrix inverse (void) const; 141 ComplexMatrix inverse (void) const;
142 ComplexMatrix inverse (int& info) const; 142 ComplexMatrix inverse (int& info) const;
143 ComplexMatrix inverse (int& info, double& rcond, int force = 0) const; 143 ComplexMatrix inverse (int& info, double& rcond, int force = 0,
144 int calc_cond = 1) const;
144 145
145 ComplexMatrix pseudo_inverse (double tol = 0.0); 146 ComplexMatrix pseudo_inverse (double tol = 0.0);
146 147
147 ComplexMatrix fourier (void) const; 148 ComplexMatrix fourier (void) const;
148 ComplexMatrix ifourier (void) const; 149 ComplexMatrix ifourier (void) const;
150 ComplexMatrix fourier2d (void) const; 151 ComplexMatrix fourier2d (void) const;
151 ComplexMatrix ifourier2d (void) const; 152 ComplexMatrix ifourier2d (void) const;
152 153
153 ComplexDET determinant (void) const; 154 ComplexDET determinant (void) const;
154 ComplexDET determinant (int& info) const; 155 ComplexDET determinant (int& info) const;
155 ComplexDET determinant (int& info, double& rcond) const; 156 ComplexDET determinant (int& info, double& rcond, int calc_cond = 1) const;
156 157
157 ComplexMatrix solve (const Matrix& b) const; 158 ComplexMatrix solve (const Matrix& b) const;
158 ComplexMatrix solve (const Matrix& b, int& info) const; 159 ComplexMatrix solve (const Matrix& b, int& info) const;
159 ComplexMatrix solve (const Matrix& b, int& info, double& rcond) const; 160 ComplexMatrix solve (const Matrix& b, int& info, double& rcond) const;
160 ComplexMatrix solve (const Matrix& b, int& info, double& rcond, 161 ComplexMatrix solve (const Matrix& b, int& info, double& rcond,
249 ComplexMatrix cumprod (int dim = -1) const; 250 ComplexMatrix cumprod (int dim = -1) const;
250 ComplexMatrix cumsum (int dim = -1) const; 251 ComplexMatrix cumsum (int dim = -1) const;
251 ComplexMatrix prod (int dim = -1) const; 252 ComplexMatrix prod (int dim = -1) const;
252 ComplexMatrix sum (int dim = -1) const; 253 ComplexMatrix sum (int dim = -1) const;
253 ComplexMatrix sumsq (int dim = -1) const; 254 ComplexMatrix sumsq (int dim = -1) const;
255 Matrix abs (void) const;
254 256
255 ComplexColumnVector diag (void) const; 257 ComplexColumnVector diag (void) const;
256 ComplexColumnVector diag (int k) const; 258 ComplexColumnVector diag (int k) const;
257 259
258 bool row_is_real_only (int) const; 260 bool row_is_real_only (int) const;