20 #include "headcpp.hpp"
21 #include "matrice.hpp"
23 #include "array_math.hpp"
29 if (
lu != 0x0)
delete lu ;
102 if (source.
band !=0x0)
135 index.
set(0) = index_so(0) + i ;
136 index.
set(1) = index_so(1) + j ;
139 while (index_so.
inc()) ;
148 return (*
std)(index) ;
152 ostream& operator<< (ostream& flux,
const Matrice & source) {
154 flux <<
"Matrix " << source.
sizes(0) <<
" * " << source.
sizes(1) << endl ;
155 for (
int i=0 ; i<source.
sizes(0) ; i++) {
156 for (
int j=0 ; j<source.
sizes(1) ; j++)
157 flux << source(i, j) <<
" " ;
166 if (
band != 0x0) return ;
169 assert (n ==
sizes(1)) ;
176 for (
int i=0 ; i<u ; i++)
177 for (
int j=u-i ; j<n ; j++)
178 band->
set(j*ldab+i+l) = (*this)(j-u+i, j) ;
180 for (
int j=0 ; j<n ; j++)
181 band->
set(j*ldab+u+l) = (*this)(j, j) ;
183 for (
int i=u+1 ; i<u+l+1 ; i++)
184 for (
int j=0 ; j<n-i+u ; j++)
185 band->
set(j*ldab+i+l) = (*this) (i+j-u, j) ;
227 assert (
sizes(1) == n) ;
259 assert (n ==
sizes(1)) ;
261 double* a =
new double [n*n] ;
263 for (
int i=0 ; i<n*n ; i++) {
264 a[i] = (*std)(index) ;
269 double* wr =
new double[n] ;
270 double* wi =
new double[n] ;
278 double* work =
new double[ldwork] ;
282 F77_dgeev(&jobvl, &jobvr, &n, a, &lda, wr, wi, vl, &ldvl, vr, &ldvr,
283 work, &ldwork, &info) ;
290 Index index_out(res_out) ;
291 for (
int i=0 ; i<n ; i++) {
292 result.
set(index_out) = wr[n-i-1] ;
294 result.
set(index_out) = wi[n-i-1] ;
310 assert (
std != 0x0) ;
316 assert (n ==
sizes(1)) ;
318 double* a =
new double [n*n] ;
320 for (
int i=0 ; i<n*n ; i++) {
321 a[i] = (*std)(index) ;
326 double* wr =
new double[n] ;
327 double* wi =
new double[n] ;
330 double* vl =
new double[ldvl*ldvl] ;
332 double* vr =
new double[ldvl*ldvl] ;
335 double* work =
new double[ldwork] ;
339 F77_dgeev(&jobvl, &jobvr, &n, a, &lda, wr, wi, vl, &ldvl, vr, &ldvr,
340 work, &ldwork, &info) ;
346 for (
int i=0 ; i<n ; i++)
347 for (
int j=0 ; j<n ; j++) {
348 res.
set(j,n-i-1) = vr[conte] ;
370 for (
int i=0; i<nbc; i++)
371 for (
int j=0; j<nbl; j++) {
374 resu.
set(i,j) = (*std)(index) ;
381 assert((
std != 0x0)&&(a.
std != 0x0)) ;
386 assert((
std != 0x0)&&(a.
std != 0x0)) ;
412 assert((a.
std != 0x0) && (b.
std != 0x0)) ;
418 assert((a.
std != 0x0) && (b.
std != 0x0)) ;
424 assert(a.
std != 0x0) ;
431 assert(a.
std != 0x0) ;
437 assert(a.
std != 0x0) ;
444 int nbla = aa.
sizes(1) ;
445 int nbca = aa.
sizes(0) ;
446 int nbcb = bb.
sizes(0) ;
448 assert( nbca == bb.
sizes(1)) ;
452 for (
int i=0; i<nbla; i++)
453 for (
int j=0; j<nbcb; j++) {
455 for (
int k=0; k<nbca; k++) {
456 sum += aa(i,k) * bb(k, j) ;
458 resu.
set(i,j) = sum ;
465 assert(a.
std != 0x0) ;
reference set(const Index &pos)
Read/write of an element.
pointer set_data()
Direct accessor to the data, read/write version.
int get_size(int i) const
Returns the size of a given dimension.
const Dim_array & get_dimensions() const
Returns the Dim_array of the Array.
Class for storing the dimensions of an array.
int get_ndim() const
Returns the number of dimensions.
int & set(int i)
Read/write of the size of a given dimension.
Class that gives the position inside a multi-dimensional Array.
int & set(int i)
Read/write of the position in a given dimension.
bool inc(int increm, int var=0)
Increments the position of the Index.
void copy_inside(int i, int j, const Matrice &so)
Copies the elements of so inside the matrice, starting at the position .
int kl
Number of lower-diagonals in the band representation.
void operator/=(double)
Operator /=.
Array< int > * permute
Pointer on the second array of the LU-representation.
Dim_array sizes
Dim_array of dimension 2 containing the size of the matrix.
void operator-=(const Matrice &)
Operator -=.
Array< double > * band
Pointer on the array of the band representation of a square matrix.
Array< double > solve(const Array< double > &sec_membre) const
Solves the linear system represented by the matrix.
Array< double > val_propre() const
Returns the eigenvalues of the matrix, calculated using LAPACK.
Array< double > * lu
Pointer on the first array of the LU-representation.
Matrice transpose() const
Computes the transpose matrix.
double & set(int i, int j)
Read/write of a particuliar element.
Matrice(int size1, int size2)
Standard constructor.
void operator*=(double)
Operator *=.
void set_band(int up, int low) const
Calculate the band storage of *std.
Matrice vect_propre() const
Returns the eigenvectors of the matrix, calculated using LAPACK.
void operator=(double x)
Sets all the element of *std to x.
Array< double > * std
Pointer on the array of the standard representation.
void del_deriv()
Logical destructor : dellocates the memory of the various used representations.
void operator+=(const Matrice &)
Operator +=.
void set_lu() const
Calculate the LU-representation, assuming the band-storage has been done.
int ku
Number of upper-diagonals in the band representation.
double operator()(int i, int j) const
Read-only of a particuliar element.
void annule()
Sets all the coeficients of the *std to 0.