Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

gsl::permutation Class Reference

#include <permutation.h>

List of all members.

Public Methods

 permutation (size_t n, bool clear=true)
 permutation ()
void resize (size_t n)


Constructor & Destructor Documentation

gsl::permutation::permutation ( size_t n,
bool clear = true ) [inline]
 

Definition at line 33 of file permutation.h.

00034         {
00035                 gsldata=(clear ? gsl_permutation_calloc(n) : gsl_permutation_alloc(n));
00036         }

gsl::permutation::permutation ( ) [inline]
 

Definition at line 37 of file permutation.h.

00037 :gsldata(NULL){;}


Member Function Documentation

void gsl::permutation::resize ( size_t n ) [inline]
 

Definition at line 38 of file permutation.h.

Referenced by gsl::matrix_int::LU_decomp(), gsl::matrix_float::LU_decomp(), and gsl::matrix::LU_decomp().

00038 {gsldata= gsl_permutation_calloc(n);}


Friends And Related Function Documentation

class matrix [friend]
 

Definition at line 27 of file permutation.h.

class matrix_float [friend]
 

Definition at line 28 of file permutation.h.

class matrix_int [friend]
 

Definition at line 29 of file permutation.h.


The documentation for this class was generated from the following file:
Generated at Sun Dec 16 23:44:45 2001 for gslwrap by doxygen1.2.8.1 written by Dimitri van Heesch, © 1997-2001