Epetra Package Browser (Single Doxygen Collection)
Development
|
Epetra_LongLongSerialDenseMatrix: A class for constructing and using general dense integer matrices. More...
#include <Epetra_LongLongSerialDenseMatrix.h>
Protected Member Functions | |
void | CopyMat (long long *Source, int Source_LDA, int NumRows, int NumCols, long long *Target, int Target_LDA) |
void | CleanupData () |
Protected Member Functions inherited from Epetra_Object | |
std::string | toString (const int &x) const |
std::string | toString (const long long &x) const |
std::string | toString (const double &x) const |
Protected Attributes | |
Epetra_DataAccess | CV_ |
bool | A_Copied_ |
int | M_ |
int | N_ |
int | LDA_ |
long long * | A_ |
Constructor/Destructor Methods | |
Epetra_LongLongSerialDenseMatrix () | |
Default constructor; defines a zero size object. More... | |
Epetra_LongLongSerialDenseMatrix (int NumRows, int NumCols) | |
Shaped constructor; defines a variable-sized object. More... | |
Epetra_LongLongSerialDenseMatrix (Epetra_DataAccess CV, long long *A, int LDA, int NumRows, int NumCols) | |
Set object values from two-dimensional array. More... | |
Epetra_LongLongSerialDenseMatrix (const Epetra_LongLongSerialDenseMatrix &Source) | |
Epetra_LongLongSerialDenseMatrix copy constructor. More... | |
virtual | ~Epetra_LongLongSerialDenseMatrix () |
Epetra_LongLongSerialDenseMatrix destructor. More... | |
Shaping/sizing Methods | |
int | Shape (int NumRows, int NumCols) |
Set dimensions of a Epetra_LongLongSerialDenseMatrix object; init values to zero. More... | |
int | Reshape (int NumRows, int NumCols) |
Reshape a Epetra_LongLongSerialDenseMatrix object. More... | |
Data Accessor methods | |
virtual long long | OneNorm () |
Computes the 1-Norm of the this matrix. More... | |
virtual long long | InfNorm () |
Computes the Infinity-Norm of the this matrix. More... | |
Epetra_LongLongSerialDenseMatrix & | operator= (const Epetra_LongLongSerialDenseMatrix &Source) |
Copy from one matrix to another. More... | |
bool | operator== (const Epetra_LongLongSerialDenseMatrix &rhs) const |
Comparison operator. More... | |
bool | operator!= (const Epetra_LongLongSerialDenseMatrix &rhs) const |
Inequality operator. More... | |
long long & | operator() (int RowIndex, int ColIndex) |
Element access function. More... | |
const long long & | operator() (int RowIndex, int ColIndex) const |
Element access function. More... | |
long long * | operator[] (int ColIndex) |
Column access function. More... | |
const long long * | operator[] (int ColIndex) const |
Column access function. More... | |
int | Random () |
Set matrix values to random numbers. More... | |
int | M () const |
Returns row dimension of system. More... | |
int | N () const |
Returns column dimension of system. More... | |
const long long * | A () const |
Returns const pointer to the this matrix. More... | |
long long * | A () |
Returns pointer to the this matrix. More... | |
int | LDA () const |
Returns the leading dimension of the this matrix. More... | |
Epetra_DataAccess | CV () const |
Returns the data access mode of the this matrix. More... | |
I/O methods | |
virtual void | Print (std::ostream &os) const |
Print service methods; defines behavior of ostream << operator. More... | |
Expert-only unsupported methods | |
int | MakeViewOf (const Epetra_LongLongSerialDenseMatrix &Source) |
Reset an existing LongLongSerialDenseMatrix to point to another Matrix. More... | |
Additional Inherited Members | |
Public Member Functions inherited from Epetra_Object | |
Epetra_Object (int TracebackModeIn=-1, bool set_label=true) | |
Epetra_Object Constructor. More... | |
Epetra_Object (const char *const Label, int TracebackModeIn=-1) | |
Epetra_Object Constructor. More... | |
Epetra_Object (const Epetra_Object &Object) | |
Epetra_Object Copy Constructor. More... | |
virtual | ~Epetra_Object () |
Epetra_Object Destructor. More... | |
virtual void | SetLabel (const char *const Label) |
Epetra_Object Label definition using char *. More... | |
virtual const char * | Label () const |
Epetra_Object Label access funtion. More... | |
virtual int | ReportError (const std::string Message, int ErrorCode) const |
Error reporting method. More... | |
Static Public Member Functions inherited from Epetra_Object | |
static void | SetTracebackMode (int TracebackModeValue) |
Set the value of the Epetra_Object error traceback report mode. More... | |
static int | GetTracebackMode () |
Get the value of the Epetra_Object error report mode. More... | |
static std::ostream & | GetTracebackStream () |
Get the output stream for error reporting. More... | |
Static Public Attributes inherited from Epetra_Object | |
static int | TracebackMode |
Epetra_LongLongSerialDenseMatrix: A class for constructing and using general dense integer matrices.
The Epetra_LongLongSerialDenseMatrix class enables the construction and use of integer-valued, general dense matrices.
The Epetra_LongLongSerialDenseMatrix class is intended to provide very basic support for dense rectangular matrices.
Constructing Epetra_LongLongSerialDenseMatrix Objects
There are four Epetra_LongLongSerialDenseMatrix constructors. The first constructs a zero-sized object which should be made to appropriate length using the Shape() or Reshape() functions and then filled with the [] or () operators. The second constructs an object sized to the dimensions specified, which should be filled with the [] or () operators. The third is a constructor that accepts user data as a 2D array, and the fourth is a copy constructor. The third constructor has two data access modes (specified by the Epetra_DataAccess argument):
Epetra_LongLongSerialDenseMatrix constructors will throw an exception if an error occurrs. These exceptions will alway be negative integer values as follows:
Other Epetra_LongLongSerialDenseMatrix functions that do not return an integer error code (such as operators () and [] ) will throw an exception if an error occurrs. These exceptions will be integer values as follows:
bExtracting Data from Epetra_LongLongSerialDenseMatrix Objects
Once a Epetra_LongLongSerialDenseMatrix is constructed, it is possible to view the data via access functions.
Vector and Utility Functions
Once a Epetra_LongLongSerialDenseMatrix is constructed, several mathematical functions can be applied to the object. Specifically:
Definition at line 120 of file Epetra_LongLongSerialDenseMatrix.h.
Epetra_LongLongSerialDenseMatrix::Epetra_LongLongSerialDenseMatrix | ( | ) |
Default constructor; defines a zero size object.
Epetra_LongLongSerialDenseMatrix objects defined by the default constructor should be sized with the Shape() or Reshape functions. Values should be defined by using the [] or () operators.
Definition at line 50 of file Epetra_LongLongSerialDenseMatrix.cpp.
Epetra_LongLongSerialDenseMatrix::Epetra_LongLongSerialDenseMatrix | ( | int | NumRows, |
int | NumCols | ||
) |
Shaped constructor; defines a variable-sized object.
In | NumRows - Number of rows in object. |
In | NumCols - Number of columns in object. |
Epetra_SerialDenseMatrix objects defined by the shaped constructor are already shaped to the dimensions given as a parameters. All values are initialized to 0. Calling this constructor is equivalent to using the default constructor, and then calling the Shape function on it. Values should be defined by using the [] or () operators.
Definition at line 62 of file Epetra_LongLongSerialDenseMatrix.cpp.
Epetra_LongLongSerialDenseMatrix::Epetra_LongLongSerialDenseMatrix | ( | Epetra_DataAccess | CV, |
long long * | A, | ||
int | LDA, | ||
int | NumRows, | ||
int | NumCols | ||
) |
Set object values from two-dimensional array.
In | Epetra_DataAccess - Enumerated type set to Copy or View. |
In | A - Pointer to an array of integer numbers. The first vector starts at A. The second vector starts at A+LDA, the third at A+2*LDA, and so on. |
In | LDA - The "Leading Dimension", or stride between vectors in memory. |
In | NumRows - Number of rows in object. |
In | NumCols - Number of columns in object. |
See Detailed Description section for further discussion.
Definition at line 81 of file Epetra_LongLongSerialDenseMatrix.cpp.
Epetra_LongLongSerialDenseMatrix::Epetra_LongLongSerialDenseMatrix | ( | const Epetra_LongLongSerialDenseMatrix & | Source | ) |
Epetra_LongLongSerialDenseMatrix copy constructor.
This matrix will take on the data access mode of the Source matrix.
Definition at line 114 of file Epetra_LongLongSerialDenseMatrix.cpp.
|
virtual |
Epetra_LongLongSerialDenseMatrix destructor.
Definition at line 187 of file Epetra_LongLongSerialDenseMatrix.cpp.
int Epetra_LongLongSerialDenseMatrix::Shape | ( | int | NumRows, |
int | NumCols | ||
) |
Set dimensions of a Epetra_LongLongSerialDenseMatrix object; init values to zero.
In | NumRows - Number of rows in object. |
In | NumCols - Number of columns in object. |
Allows user to define the dimensions of a Epetra_LongLongSerialDenseMatrix at any point. This function can be called at any point after construction. Any values that were previously in this object are destroyed and the resized matrix starts off with all zero values.
Definition at line 165 of file Epetra_LongLongSerialDenseMatrix.cpp.
int Epetra_LongLongSerialDenseMatrix::Reshape | ( | int | NumRows, |
int | NumCols | ||
) |
Reshape a Epetra_LongLongSerialDenseMatrix object.
In | NumRows - Number of rows in object. |
In | NumCols - Number of columns in object. |
Allows user to define the dimensions of a Epetra_LongLongSerialDenseMatrix at any point. This function can be called at any point after construction. Any values that were previously in this object are copied into the new shape. If the new shape is smaller than the original, the upper left portion of the original matrix (the principal submatrix) is copied to the new matrix.
Definition at line 138 of file Epetra_LongLongSerialDenseMatrix.cpp.
|
virtual |
Computes the 1-Norm of the this matrix.
Definition at line 317 of file Epetra_LongLongSerialDenseMatrix.cpp.
|
virtual |
Computes the Infinity-Norm of the this matrix.
Definition at line 334 of file Epetra_LongLongSerialDenseMatrix.cpp.
Epetra_LongLongSerialDenseMatrix & Epetra_LongLongSerialDenseMatrix::operator= | ( | const Epetra_LongLongSerialDenseMatrix & | Source | ) |
Copy from one matrix to another.
The operator= allows one to copy the values from one existing LongLongSerialDenseMatrix to another. The left hand side matrix will take on the data access mode of the right hand side matrix.
Definition at line 203 of file Epetra_LongLongSerialDenseMatrix.cpp.
bool Epetra_LongLongSerialDenseMatrix::operator== | ( | const Epetra_LongLongSerialDenseMatrix & | rhs | ) | const |
Comparison operator.
operator== compares two Epetra_LongLongSerialDenseMatrix objects, returns false if sizes are different, or if any coefficients differ.
Definition at line 263 of file Epetra_LongLongSerialDenseMatrix.cpp.
|
inline |
Inequality operator.
operator!= simply returns the negation of operator==.
Definition at line 240 of file Epetra_LongLongSerialDenseMatrix.h.
|
inline |
Element access function.
The parentheses operator returns the element in the ith row and jth column if A(i,j) is specified, the expression A[j][i] (note that i and j are reversed) will return the same element. Thus, A(i,j) = A[j][i] for all valid i and j.
Definition at line 367 of file Epetra_LongLongSerialDenseMatrix.h.
|
inline |
Element access function.
The parentheses operator returns the element in the ith row and jth column if A(i,j) is specified, the expression A[j][i] (note that i and j are reversed) will return the same element. Thus, A(i,j) = A[j][i] for all valid i and j.
Definition at line 379 of file Epetra_LongLongSerialDenseMatrix.h.
|
inline |
Column access function.
The parentheses operator returns the element in the ith row and jth column if A(i,j) is specified, the expression A[j][i] (note that i and j are reversed) will return the same element. Thus, A(i,j) = A[j][i] for all valid i and j.
Definition at line 391 of file Epetra_LongLongSerialDenseMatrix.h.
|
inline |
Column access function.
The parentheses operator returns the element in the ith row and jth column if A(i,j) is specified, the expression A[j][i] (note that i and j are reversed) will return the same element. Thus, A(i,j) = A[j][i] for all valid i and j.
Definition at line 400 of file Epetra_LongLongSerialDenseMatrix.h.
int Epetra_LongLongSerialDenseMatrix::Random | ( | ) |
Set matrix values to random numbers.
LongLongSerialDenseMatrix uses the random number generator provided by Epetra_Util. The matrix values will be set to random values on the interval (0, 2^31 - 1).
Definition at line 377 of file Epetra_LongLongSerialDenseMatrix.cpp.
|
inline |
Returns row dimension of system.
Definition at line 303 of file Epetra_LongLongSerialDenseMatrix.h.
|
inline |
Returns column dimension of system.
Definition at line 306 of file Epetra_LongLongSerialDenseMatrix.h.
|
inline |
Returns const pointer to the this matrix.
Definition at line 309 of file Epetra_LongLongSerialDenseMatrix.h.
|
inline |
Returns pointer to the this matrix.
Definition at line 312 of file Epetra_LongLongSerialDenseMatrix.h.
|
inline |
Returns the leading dimension of the this matrix.
Definition at line 315 of file Epetra_LongLongSerialDenseMatrix.h.
|
inline |
Returns the data access mode of the this matrix.
Definition at line 318 of file Epetra_LongLongSerialDenseMatrix.h.
|
virtual |
Print service methods; defines behavior of ostream << operator.
Reimplemented from Epetra_Object.
Reimplemented in Epetra_LongLongSerialDenseVector.
Definition at line 353 of file Epetra_LongLongSerialDenseMatrix.cpp.
int Epetra_LongLongSerialDenseMatrix::MakeViewOf | ( | const Epetra_LongLongSerialDenseMatrix & | Source | ) |
Reset an existing LongLongSerialDenseMatrix to point to another Matrix.
Allows an existing LongLongSerialDenseMatrix to become a View of another matrix's data, regardless of the DataAccess mode of the Source matrix. It is assumed that the Source matrix is an independent matrix, and no checking is done to verify this.
This is used by Epetra_CrsGraph in the OptimizeStorage method. It is used so that an existing (Copy) matrix can be converted to a View. This frees up memory that CrsGraph no longer needs.
Source | The LongLongSerialDenseMatrix this will become a view of. |
Definition at line 284 of file Epetra_LongLongSerialDenseMatrix.cpp.
|
protected |
Definition at line 301 of file Epetra_LongLongSerialDenseMatrix.cpp.
|
protected |
Definition at line 192 of file Epetra_LongLongSerialDenseMatrix.cpp.
|
protected |
Definition at line 356 of file Epetra_LongLongSerialDenseMatrix.h.
|
protected |
Definition at line 357 of file Epetra_LongLongSerialDenseMatrix.h.
|
protected |
Definition at line 358 of file Epetra_LongLongSerialDenseMatrix.h.
|
protected |
Definition at line 359 of file Epetra_LongLongSerialDenseMatrix.h.
|
protected |
Definition at line 360 of file Epetra_LongLongSerialDenseMatrix.h.
|
protected |
Definition at line 361 of file Epetra_LongLongSerialDenseMatrix.h.