In file ..\..\inc\DMatrix.h:

class CDVector

Vector class with double precision.

Inheritance:


Public Methods

[more]DIVAMatrixExport void Abs ()
Takes the absolute valueof each element.
[more]DIVAMatrixExport void AlignTo ( const CDVector &v, double* pA, double* pB )
Linear alignment of this vector to another vector using the L2 norm.
[more]DIVAMatrixExport double AutoCorrelation ( const int lag ) const
Calculates the autocorrelation of the vector.
[more]DIVAMatrixExport void Ceil ()
Takes ceil() of each element.
[more]DIVAMatrixExport void Clamp ( const double min, const double max )
Clamps the vector to [min,max].
[more]DIVAMatrixExport void CrossProduct ( const CDVector &v1, const CDVector &v2)
Forms the cross product of two vectors.
[more]DIVAMatrixExport void ElementDivide (const CDVector& vector)
Divide two vectors element-wise.
[more]DIVAMatrixExport void ElementMultiply (const CDVector& vector)
Multiplies two vectors element-wise.
[more]DIVAMatrixExport void Eq (const double B, CDVector& C ) const
Equal - compares a vector and a double.
[more]DIVAMatrixExport void Eq ( const CDVector& B, CDVector& C ) const
Equal - compares a vector and a vector.
[more]DIVAMatrixExport void Floor ()
Takes floor() of each element.
[more]DIVAMatrixExport void FromFile ( FILE* fh )
Reads a vector from disk in binary format.
[more]DIVAMatrixExport void FromFile ( const CDString& sFilename )
Reads a vector from disk in binary format.
[more]DIVAMatrixExport void FromMatlab (const CDString& sFilename, const CDString& sName)
Reads a vector from disk in MatLab (.m) format.
[more]DIVAMatrixExport void Ge ( const CDVector& B, CDVector& C ) const
Greater Than or Equal - compares a vector and a vector.
[more]DIVAMatrixExport void Ge (const double B, CDVector& C ) const
Greater Than or Equal - compares a double and a vector.
[more]DIVAMatrixExport void Gt (const double B, CDVector& C ) const
Greater Than - compares a double and a vector.
[more]DIVAMatrixExport void Gt ( const CDVector& B, CDVector& C ) const
Greater Than - compares a vector and a vector.
[more]DIVAMatrixExport void Le ( const CDVector& B, CDVector& C ) const
Less Than or Equal - compares a vector and a vector.
[more]DIVAMatrixExport void Le (const double B, CDVector& C ) const
Less Than or Equal - compares a double and a vector.
[more]DIVAMatrixExport void Linspace ( const double x1, const double x2, const int n )
Generates a vector of linearly equally spaced points between x1 and x2 (inclusive).
[more]DIVAMatrixExport void Log ()
Takes the natural logarithm of each element.
[more]DIVAMatrixExport void Lt ( const CDVector& B, CDVector& C ) const
Less Than - compares a vector and a vector.
[more]DIVAMatrixExport void Lt (const double B, CDVector& C ) const
Less Than - compares a double and a vector.
[more]DIVAMatrixExport double Max () const
Finds the maximum element in the vector.
[more]DIVAMatrixExport double Mean () const
Calculates the mean value of the vector.
[more]DIVAMatrixExport double Median () const
Calculates the median.
[more]DIVAMatrixExport double Min (int& iPos) const
Finds the minimum element in the vector and its position.
[more]DIVAMatrixExport double Min () const
Finds the minimum element in the vector.
[more]DIVAMatrixExport void Ne (const double B, CDVector& C ) const
Not Equal - compares a double and a vector.
[more]DIVAMatrixExport void Ne ( const CDVector& B, CDVector& C ) const
Not Equal - compares a vector and a vector.
[more]DIVAMatrixExport double Norm1 () const
Calculates the one-norm (L1) of the vector.
[more]DIVAMatrixExport double Norm2 () const
Calculates the two-norm (L2) of the vector.
[more]DIVAMatrixExport double NormInf () const
Calculates the infinity-norm (Linf) of the vector.
[more]DIVAMatrixExport void Normalize2 ()
Normalizes the vector to unit length, using the 2-norm.
[more]DIVAMatrixExport void Pow (double dP)
Takes the power 'dP' of each element.
[more]DIVAMatrixExport void Rand ()
Uniformly distributed random numbers.
[more]DIVAMatrixExport void Rand ( const int st, const int end )
Uniformly distributed integer random numbers.
[more]DIVAMatrixExport CDVector Range ( const int st, const int end) const
Returns a sub range of a vector.
[more]DIVAMatrixExport void Reverse ()
Reverses the vector.
[more]DIVAMatrixExport void Round ()
Takes round() of each element.
[more]DIVAMatrixExport void Shuffle ()
Shuffles (randomizes) the vector.
[more]DIVAMatrixExport double Skewness () const
Calculates the skewness of the vector.
[more]DIVAMatrixExport void Sort ( bool ascending )
Sorts the vector.
[more]DIVAMatrixExport void Sqr ()
Squares each element.
[more]DIVAMatrixExport void Sqrt ()
Takes the square root of each element.
[more]DIVAMatrixExport double Std () const
Calculates the standard deviation of the vector.
[more]DIVAMatrixExport double Sum () const
Calculates the sum of the vector.
[more]DIVAMatrixExport void ToFile ( FILE* fh ) const
Writes the vector to disk in binary format.
[more]DIVAMatrixExport void ToFile ( const CDString& sFilename ) const
Writes the vector to disk in binary format.
[more]DIVAMatrixExport void ToMatlab (const CDString& sFilename, const CDString& sName, const CDString& sComment, bool fAppend) const
Writes the vector to disk in MatLab (.m) format.
[more]DIVAMatrixExport void ToMatrix ( const int nRows, const int nCols, CDMatrix &m, bool rowWise )
Converts this vector to a matrix.
[more]DIVAMatrixExport CDString ToString (const bool fNewline) const
Returns a string representing the vector.
[more]DIVAMatrixExport CDVector Trim ( const double percentage ) const
Removes the extreme 'percentage' part of the vector.
[more]DIVAMatrixExport double TrimmedMean ( const double percentage ) const
Calculates the trimmed mean.
[more]DIVAMatrixExport double TrimmedStd ( const double percentage ) const
Calculates the trimmed standard deviation.
[more]DIVAMatrixExport double TrimmedVar ( const double percentage ) const
Calculates the trimmed variance.
[more]DIVAMatrixExport double Var ( double* pMean ) const
Calculates the variance of the vector.
[more]DIVAMatrixExport CDVector VecCat ( const CDVector &v ) const
Concatenates a vector to the end of this vector.
[more]DIVAMatrixExport CDVector& operator= (double value)
Assignment operator.
[more]DIVAMatrixExport CDVector& operator= (const CDVector &vIn)
Assignment operator.
[more]DIVAMatrixExport CDVector& operator= (const CVisDVector &vIn)
Assignment operator.


Documentation

Vector class with double precision based upon the VisSDK vector class CVisDVector.

oDIVAMatrixExport CDVector& operator=(const CVisDVector &vIn)

Assignment operator.

Parameters:
vIn - Input vector.
Returns:
This.
Author:
Rune Fisker
Version:
2-5-2001

oDIVAMatrixExport CDVector& operator=(const CDVector &vIn)

Assignment operator.

Parameters:
vIn - Input vector.
Returns:
This.
Author:
Rune Fisker
Version:
2-5-2001

oDIVAMatrixExport CDVector& operator=(double value)

Assignment operator. Sets all element to the input value.

Parameters:
vIn - Input double.
Returns:
This.
Author:
Rune Fisker
Version:
2-5-2001

oDIVAMatrixExport double Max() const

Finds the maximum element in the vector.

Returns:
The maximum value of the elements.
Author:
Rune Fisker
Version:
3-5-1999

oDIVAMatrixExport double Min() const

Finds the minimum element in the vector.

Returns:
The minimum value of the elements.
Author:
Rune Fisker
Version:
3-5-1999

oDIVAMatrixExport double Min(int& iPos) const

Finds the minimum element in the vector and its position.

Returns:
The minimum value of the elements and its position.
Author:
Rune Fisker
Version:
1-9-1999

oDIVAMatrixExport double Mean() const

Calculates the mean value of the vector.

Returns:
The mean value.
Author:
Rune Fisker
Version:
3-5-1999

oDIVAMatrixExport double Skewness() const

Calculates the skewness the vector.

Returns:
The skewness.
Author:
Rune Fisker
Version:
3-5-1999

oDIVAMatrixExport double Std() const

Calculates the standard deviation the vector.

Returns:
The skewness.
Author:
Rune Fisker
Version:
3-5-1999

oDIVAMatrixExport double Sum() const

Calculates the sum of the vector.

Returns:
The sum.
Author:
Rune Fisker
Version:
3-5-1999

oDIVAMatrixExport double Var( double* pMean ) const

Calculates the variance the vector.

Parameters:
pMean - Optional pointer, where the mean is returned.
Returns:
The variance.
Author:
Rune Fisker
Version:
3-5-1999

oDIVAMatrixExport void Sort( bool ascending )

Sorts the vector in either ascending (default) or descending order. Implemented using the standard quicksort, qsort().

The STL sort is most likely faster, though.

Parameters:
ascending - If true (default) the vector is sorted in ascending order. If false its sorted in descending order.
Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
2-2-2001

oDIVAMatrixExport void Sqr()

Squares each element.

Returns:
Nothing.
Author:
Rune Fisker
Version:
1-5-1999

oDIVAMatrixExport void Sqrt()

Takes the square root of each element.

Returns:
Nothing.
Author:
Rune Fisker
Version:
1-5-1999

oDIVAMatrixExport void Pow(double dP)

Takes the power 'dP' of each element.

Parameters:
dP - The exponent.
Returns:
Nothing.
Author:
Rune Fisker
Version:
1-5-1999

oDIVAMatrixExport void ElementMultiply(const CDVector& vector)

Multiplies two vectors element-wise. Corresponding MatLab operator ".*".

Parameters:
vector - The input vector to multiply this vector with.
Returns:
Nothing.
Author:
Rune Fisker
Version:
1-5-1999

oDIVAMatrixExport void ElementDivide(const CDVector& vector)

Divide two vectors element-wise. Corresponding MatLab operator "./".

Parameters:
vector - The input vector to divide this vector with.
Returns:
Nothing.
Author:
Rune Fisker
Version:
1-5-1999

oDIVAMatrixExport CDString ToString(const bool fNewline) const

Returns a string representing the vector.

Parameters:
fNewline - If true, the string is terminated with a new line.
Returns:
The output string.
Author:
Rune Fisker
Version:
1-5-1999

oDIVAMatrixExport double Norm1() const

Calculates the one-norm (L1) of the vector. Also known as the city block metric.

L1(v) = |x_1| + |x_2| .. + |x_n|

Returns:
The L1 norm.
Author:
Mikkel B. Stegmann
Version:
2-5-2001

oDIVAMatrixExport double Norm2() const

Calculates the two-norm (L2) of the vector. Also known as the Euclidean length.

L2(v) = sqrt( x_1^2 + x_2^2 .. + x_n^2 )

Returns:
The L2 norm.
Author:
Mikkel B. Stegmann
Version:
2-5-2001

oDIVAMatrixExport double NormInf() const

Calculates the infinity-norm (Linf) of the vector. Also known as the Chebyshev Norm.

Linf(v) = max( |x_1|, |x_2| ... , |x_n| )

Returns:
The L2 norm.
Author:
Mikkel B. Stegmann
Version:
2-5-2001

oDIVAMatrixExport void Normalize2()

Normalizes the vector to unit length, using the 2-norm.

Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
2-5-2001

oDIVAMatrixExport void ToMatlab(const CDString& sFilename, const CDString& sName, const CDString& sComment, bool fAppend) const

Writes the vector to disk in MatLab (.m) format. To read the vector into MatLab write e.g. 'my_vector.m' at the MatLab prompt.

Notice that this should be used for storage a (really) large vectors, due to the computational and i/o overhead induced by the simple MatLab text format.

Also, remember that MatLab can't read (.m) files with lines longer than 4096 bytes.

If no communication with MatLab is needed, but merely to/from disk functionality within a DIVA program, it is suggested to use the fast binary i/o methods ToFile() and FromFile().

Parameters:
sFilename - Output file name. Should have the extension '.m'.
sName - Name of destination matlab variable.
sComment - Optional comment inside the file.
fAppend - If true, the vector is appended to the file 'sFilename'.
Returns:
Nothing.
Author:
Henrik Aanęs
Version:
2-5-2001

oDIVAMatrixExport void FromMatlab(const CDString& sFilename, const CDString& sName)

Reads a vector from disk in MatLab (.m) format into 'this'.

Notice that this should be used for storage a (really) large vectors, due to the computational and i/o overhead induced by the simple MatLab text format.

Also, remember that MatLab can't read (.m) files with lines longer than 4096 bytes.

If no communication with MatLab is needed, but merely to/from disk functionality within a DIVA program, it is suggested to use the fast binary i/o methods ToFile() and FromFile().

Parameters:
sFilename - Input file name.
sName - The name to search for (and load) inside the matlab file.
Returns:
Nothing.
Author:
Henrik Aanęs
Version:
2-5-2001

oDIVAMatrixExport void ToFile( const CDString& sFilename ) const

Writes the vector to disk in binary format. Use 'readbin.m' to load such a file into MatLab (placed in the diva/matlab dir).

Parameters:
sFilename - Output file name.
Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
2-5-2001

oDIVAMatrixExport void FromFile( const CDString& sFilename )

Reads a vector from disk in binary format.

Parameters:
sFilename - Input file name.
Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
2-5-2001

oDIVAMatrixExport void ToFile( FILE* fh ) const

Writes the vector to disk in binary format. Use 'readbin.m' to load such a file into MatLab (placed in the diva/matlab dir).

Parameters:
fh - Open file handle (opened using fopen())
Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
2-5-2001

oDIVAMatrixExport void FromFile( FILE* fh )

Reads a vector from disk in binary format.

Parameters:
fh - Open file handle (opened using fopen())
Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
2-5-2001

oDIVAMatrixExport void Eq(const double B, CDVector& C ) const

Compares of a vector and a double and returns the result as a binary vector i.e.:

C(i) = 1 if A(i) == B C(i) = 0 else

Corresponding MatLab function EQ()

Parameters:
B - Input double.
C - Output result vector.
Returns:
Nothing.
Author:
Lars Pedersen
Version:
7-12-2000

oDIVAMatrixExport void Eq( const CDVector& B, CDVector& C ) const

Compares of a vector and a vector and returns the result as a binary matrix i.e.:

C(i) = 1 if A(i) == B C(i) = 0 else

Corresponding MatLab function EQ()

Parameters:
B - Input vector.
C - Output result vector.
Returns:
Nothing.
Author:
Lars Pedersen
Version:
7-12-2000

oDIVAMatrixExport void Ne(const double B, CDVector& C ) const

Compares of a double and a vector and returns the result as a binary matrix i.e.:

C(i) = 1 if A(i) != B C(i) = 0 else

Corresponding MatLab function NE()

Parameters:
B - Input double.
C - Output result vector.
Returns:
Nothing.
Author:
Lars Pedersen
Version:
7-12-2000

oDIVAMatrixExport void Ne( const CDVector& B, CDVector& C ) const

Compares of a vector and a vector and returns the result as a binary matrix i.e.:

C(i) = 1 if A(i) != B C(i) = 0 else

Corresponding MatLab function NE()

Parameters:
B - Input vector.
C - Output result vector.
Returns:
Nothing.
Author:
Lars Pedersen
Version:
7-12-2000

oDIVAMatrixExport void Lt(const double B, CDVector& C ) const

Compares of a double and a vector and returns the result as a binary matrix i.e.:

C(i) = 1 if A(i) < B C(i) = 0 else

Corresponding MatLab function LT()

Parameters:
B - Input double.
C - Output result vector.
Returns:
Nothing.
Author:
Lars Pedersen
Version:
7-12-2000

oDIVAMatrixExport void Lt( const CDVector& B, CDVector& C ) const

Compares of a vector and a vector and returns the result as a binary matrix i.e.:

C(i) = 1 if A(i) < B C(i) = 0 else

Corresponding MatLab function LT()

Parameters:
B - Input vector.
C - Output result vector.
Returns:
Nothing.
Author:
Lars Pedersen
Version:
7-12-2000

oDIVAMatrixExport void Le(const double B, CDVector& C ) const

Compares of a double and a vector and returns the result as a binary matrix i.e.:

C(i) = 1 if A(i) <= B C(i) = 0 else

Corresponding MatLab function LE()

Parameters:
B - Input double.
C - Output result vector.
Returns:
Nothing.
Author:
Lars Pedersen
Version:
7-12-2000

oDIVAMatrixExport void Le( const CDVector& B, CDVector& C ) const

Compares of a vector and a vector and returns the result as a binary matrix i.e.:

C(i) = 1 if A(i) <= B C(i) = 0 else

Corresponding MatLab function LE()

Parameters:
B - Input vector.
C - Output result vector.
Returns:
Nothing.
Author:
Lars Pedersen
Version:
7-12-2000

oDIVAMatrixExport void Gt(const double B, CDVector& C ) const

Compares of a double and a vector and returns the result as a binary matrix i.e.:

C(i) = 1 if A(i) > B C(i) = 0 else

Corresponding MatLab function GT()

Parameters:
B - Input vector.
C - Output result vector.
Returns:
Nothing.
Author:
Lars Pedersen
Version:
7-12-2000

oDIVAMatrixExport void Gt( const CDVector& B, CDVector& C ) const

Compares of a vector and a vector and returns the result as a binary matrix i.e.:

C(i) = 1 if A(i) > B C(i) = 0 else

Corresponding MatLab function GT()

Parameters:
B - Input vector.
C - Output result vector.
Returns:
Nothing.
Author:
Lars Pedersen
Version:
7-12-2000

oDIVAMatrixExport void Ge(const double B, CDVector& C ) const

Compares of a double and a vector and returns the result as a binary matrix i.e.:

C(i) = 1 if A(i) >= B C(i) = 0 else

Corresponding MatLab function GE()

Parameters:
B - Input double.
C - Output result vector.
Returns:
Nothing.
Author:
Lars Pedersen
Version:
7-12-2000

oDIVAMatrixExport void Ge( const CDVector& B, CDVector& C ) const

Compares of a vector and a vector and returns the result as a binary matrix i.e.:

C(i) = 1 if A(i) >= B C(i) = 0 else

Corresponding MatLab function GE()

Parameters:
B - Input vector.
C - Output result vector.
Returns:
Nothing.
Author:
Lars Pedersen
Version:
7-12-2000

oDIVAMatrixExport void Log()

Takes the natural logarithm of each element.

Returns:
Nothing.
Author:
Lars Pedersen
Version:
7-12-2000

oDIVAMatrixExport void Abs()

Takes the absolute valueof each element.

Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
5-7-2002

oDIVAMatrixExport void Reverse()

Reverses the vector.

Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
3-5-2000

oDIVAMatrixExport void Rand()

Inserts uniformly distributed random numbers in the range [0;1].

Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
3-9-2001

oDIVAMatrixExport void Rand( const int st, const int end )

Inserts uniformly distributed integer random numbers in the range [st;end].

Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
3-9-2001

oDIVAMatrixExport void CrossProduct( const CDVector &v1, const CDVector &v2)

Forms the cross product of two vectors and store the result in this. If the vector does have the correct size, it will be resized.

Parameters:
v1 - Input vector.
v2 - Input vector.
Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
3-16-2001

oDIVAMatrixExport void Ceil()

Takes ceil() of each element.

Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
5-10-2002

oDIVAMatrixExport void Floor()

Takes floor() of each element.

Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
5-10-2002

oDIVAMatrixExport void Round()

Takes round() of each element.

Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
5-10-2002

oDIVAMatrixExport void Linspace( const double x1, const double x2, const int n )

Generates a vector of linearly equally spaced points between x1 and x2 (inclusive).

Parameters:
x1 - Starting point.
x2 - Ending point.
n - Number of points.
Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
5-14-2002

oDIVAMatrixExport CDVector Range( const int st, const int end) const

Returns a sub range of a vector.

Parameters:
st - Starting posistion.
end - End postion.
Returns:
A sub range in a vector.
Author:
Mikkel B. Stegmann
Version:
5-14-2002

oDIVAMatrixExport void ToMatrix( const int nRows, const int nCols, CDMatrix &m, bool rowWise )

Converts this vector to a matrix, either by row (default) or column.

Parameters:
nRows - Number of rows in the matrix.
nCols - Number of cols in the matrix.
m - Output matrix.
rowWise - If true (default) vector data is extracted into rows. If false vector data is extracted into cols.
Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
5-15-2002

oDIVAMatrixExport CDVector VecCat( const CDVector &v ) const

Concatenates a vector to the end of this vector.

Parameters:
v - Input vector.
Returns:
Concatenated vector.
Author:
Mikkel B. Stegmann
Version:
5-15-2002

oDIVAMatrixExport void Clamp( const double min, const double max )

Clamps the vector to [min,max].

Parameters:
min - Minumim value.
max - Maximum value.
Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
6-6-2002

oDIVAMatrixExport void AlignTo( const CDVector &v, double* pA, double* pB )

Linear alignment of this vector to another vector using the L2 norm.

Parameters:
v - Vector that this vector is being least squares fitted to.
a - Optional pointer to store the resulting transformation in.
b - Optional pointer to store the resulting transformation in.
Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
6-6-2002

oDIVAMatrixExport double AutoCorrelation( const int lag ) const

Calculates the autocorrelation of the vector with a given lag (default lag is 1).

Parameters:
lag - The lag.
Returns:
The autocorrelation.
Author:
Mikkel B. Stegmann
Version:
6-14-2002

oDIVAMatrixExport void Shuffle()

Shuffles (randomizes) the vector.

Returns:
Nothing.
Author:
Mikkel B. Stegmann
Version:
7-17-2002
See Also:
Rand

oDIVAMatrixExport double Median() const

Calculates the median.

Returns:
The median.
Author:
Mikkel B. Stegmann
Version:
12-10-2002
See Also:
Trim

oDIVAMatrixExport CDVector Trim( const double percentage ) const

Removes the extreme 'percentage' part of the vector. E.g. v.Trim( .10 ) removes the 5% of the lower tail and 5% of the upper tail.

By convention Trim( 1. ) returns the median.

Parameters:
percentage - The amount of data to strip from the vector.
Returns:
A trimmed version of the vector.
Author:
Mikkel B. Stegmann
Version:
12-10-2002
See Also:
TrimmedMean, TrimmedVar, TrimmedStd

oDIVAMatrixExport double TrimmedMean( const double percentage ) const

Removes the extreme 'percentage' part of the vector and calculates the mean of the remaining data.

Parameters:
percentage - The amount of data to strip from the vector.
Returns:
The trimmed mean.
Author:
Mikkel B. Stegmann
Version:
12-10-2002
See Also:
Trim

oDIVAMatrixExport double TrimmedVar( const double percentage ) const

Removes the extreme 'percentage' part of the vector and calculates the variance of the remaining data.

Parameters:
percentage - The amount of data to strip from the vector.
Returns:
The trimmed mean.
Author:
Mikkel B. Stegmann
Version:
12-10-2002
See Also:
Trim

oDIVAMatrixExport double TrimmedStd( const double percentage ) const

Removes the extreme 'percentage' part of the vector and calculates the standard deviation of the remaining data.

Parameters:
percentage - The amount of data to strip from the vector.
Returns:
The trimmed mean.
Author:
Mikkel B. Stegmann
Version:
12-10-2002
See Also:
Trim


This class has no child classes.
Author:
Rune Fisker, Mikkel B. Stegmann, Henrik Aanęs, Lars Pedersen et al.
Version:
2-5-2001
See Also:
CDMatrix

Alphabetic index HTML hierarchy of classes or Java


Back DIVA Reference Manual The DIVA-Site