#include <Teuchos_SerialDenseVector.hpp>
Inheritance diagram for Teuchos::SerialDenseVector< OrdinalType, ScalarType >:

Public Member Functions | |
Constructor/Destructor methods. | |
| SerialDenseVector () | |
| Default Constructor. | |
| SerialDenseVector (int length) | |
| Shaped Constructor. | |
| SerialDenseVector (DataAccess CV, ScalarType *values, int length) | |
| Shaped Constructor with Values. | |
| SerialDenseVector (const SerialDenseVector< OrdinalType, ScalarType > &Source) | |
| Copy Constructor. | |
| virtual | ~SerialDenseVector () |
| Destructor. | |
Sizing methods. | |
| int | size (int length) |
| Size method for changing the size of a SerialDenseVector, initializing entries to zero. | |
| int | resize (int length) |
| Resizing method for changing the size of a SerialDenseVector, keeping the entries. | |
Comparison methods. | |
| bool | operator== (const SerialDenseVector< OrdinalType, ScalarType > &Operand) |
| Equality of two matrices. | |
| bool | operator!= (const SerialDenseVector< OrdinalType, ScalarType > &Operand) |
| Inequality of two matrices. | |
Set methods. | |
| SerialDenseVector< OrdinalType, ScalarType > & | operator= (const SerialDenseVector< OrdinalType, ScalarType > &Source) |
| Copies values from one vector to another. | |
Accessor methods. | |
| ScalarType & | operator() (int index) |
| Element access method (non-const). | |
| const ScalarType & | operator() (int index) const |
| Element access method (const). | |
| ScalarType & | operator[] (int index) |
| Element access method (non-const). | |
| const ScalarType & | operator[] (int index) const |
| Element access method (const). | |
Attribute methods. | |
| int | length () const |
| Returns the length of this vector. | |
I/O methods. | |
| virtual void | print (ostream &os) const |
| Print method. Define the behavior of the ostream << operator inherited from the Object class. | |
Definition at line 47 of file Teuchos_SerialDenseVector.hpp.
|
|||||||||
|
Default Constructor. Creates an empty vector of no length. The Sizing methods should be used to size this matrix. Values of this matrix should be set using the [] or the () operators. Definition at line 176 of file Teuchos_SerialDenseVector.hpp. |
|
||||||||||
|
Shaped Constructor.
length. All values are initialized to zero. Values of this vector should be set using [] or the () operators.
Definition at line 179 of file Teuchos_SerialDenseVector.hpp. |
|
||||||||||||||||||||
|
Shaped Constructor with Values.
Definition at line 182 of file Teuchos_SerialDenseVector.hpp. |
|
||||||||||
|
Copy Constructor.
Definition at line 186 of file Teuchos_SerialDenseVector.hpp. |
|
|||||||||
|
Destructor.
Definition at line 190 of file Teuchos_SerialDenseVector.hpp. |
|
||||||||||
|
Size method for changing the size of a SerialDenseVector, initializing entries to zero.
Definition at line 92 of file Teuchos_SerialDenseVector.hpp. |
|
||||||||||
|
Resizing method for changing the size of a SerialDenseVector, keeping the entries.
Definition at line 101 of file Teuchos_SerialDenseVector.hpp. |
|
||||||||||
|
Equality of two matrices.
Definition at line 200 of file Teuchos_SerialDenseVector.hpp. |
|
||||||||||
|
Inequality of two matrices.
Definition at line 221 of file Teuchos_SerialDenseVector.hpp. |
|
||||||||||
|
Copies values from one vector to another.
The operator= copies the values from one existing SerialDenseVector to another. If Definition at line 193 of file Teuchos_SerialDenseVector.hpp. |
|
||||||||||
|
Element access method (non-const). Returns the ith element if x(i) is specified, the expression x[i] will return the same element.
Definition at line 250 of file Teuchos_SerialDenseVector.hpp. |
|
||||||||||
|
Element access method (const). Returns the ith element if x(i) is specified, the expression x[i] will return the same element.
Definition at line 259 of file Teuchos_SerialDenseVector.hpp. |
|
||||||||||
|
Element access method (non-const). Returns the ith element if x[i] is specified, the expression x(i) will return the same element.
Reimplemented from Teuchos::SerialDenseMatrix< OrdinalType, ScalarType >. Definition at line 277 of file Teuchos_SerialDenseVector.hpp. |
|
||||||||||
|
Element access method (const). Returns the ith element if x[i] is specified, the expression x(i) will return the same element.
Reimplemented from Teuchos::SerialDenseMatrix< OrdinalType, ScalarType >. Definition at line 268 of file Teuchos_SerialDenseVector.hpp. |
|
|||||||||
|
Returns the length of this vector.
Definition at line 165 of file Teuchos_SerialDenseVector.hpp. |
|
||||||||||
|
Print method. Define the behavior of the ostream << operator inherited from the Object class.
Reimplemented from Teuchos::SerialDenseMatrix< OrdinalType, ScalarType >. Definition at line 227 of file Teuchos_SerialDenseVector.hpp. |
1.3.9.1