#include <AnasaziMultiVec.hpp>
Static Public Member Functions | |
Creation methods | |
| Teuchos::RefCountPtr< MultiVec< ScalarType > > | Clone (const MultiVec< ScalarType > &mv, const int numvecs) |
Creates a new empty Anasazi::MultiVec containing numvecs columns. | |
| Teuchos::RefCountPtr< MultiVec< ScalarType > > | CloneCopy (const MultiVec< ScalarType > &mv) |
Creates a new Anasazi::MultiVec and copies contents of mv into the new vector (deep copy). | |
| Teuchos::RefCountPtr< MultiVec< ScalarType > > | CloneCopy (const MultiVec< ScalarType > &mv, const std::vector< int > &index) |
Creates a new Anasazi::MultiVec and copies the selected contents of mv into the new vector (deep copy). | |
| Teuchos::RefCountPtr< MultiVec< ScalarType > > | CloneView (MultiVec< ScalarType > &mv, const std::vector< int > &index) |
Creates a new Anasazi::MultiVec that shares the selected contents of mv (shallow copy). | |
| Teuchos::RefCountPtr< const MultiVec< ScalarType > > | CloneView (const MultiVec< ScalarType > &mv, const std::vector< int > &index) |
Creates a new const Anasazi::MultiVec that shares the selected contents of mv (shallow copy). | |
Attribute methods | |
| int | GetVecLength (const MultiVec< ScalarType > &mv) |
Obtain the vector length of mv. | |
| int | GetNumberVecs (const MultiVec< ScalarType > &mv) |
Obtain the number of vectors in mv. | |
Update methods | |
| void | MvTimesMatAddMv (ScalarType alpha, const MultiVec< ScalarType > &A, const Teuchos::SerialDenseMatrix< int, ScalarType > &B, ScalarType beta, MultiVec< ScalarType > &mv) |
Update mv with . | |
| void | MvAddMv (ScalarType alpha, const MultiVec< ScalarType > &A, ScalarType beta, const MultiVec< ScalarType > &B, MultiVec< ScalarType > &mv) |
Replace mv with . | |
| void | MvTransMv (ScalarType alpha, const MultiVec< ScalarType > &A, const MultiVec< ScalarType > &mv, Teuchos::SerialDenseMatrix< int, ScalarType > &B) |
Compute a dense matrix B through the matrix-matrix multiply . | |
| void | MvDot (const MultiVec< ScalarType > &mv, const MultiVec< ScalarType > &A, std::vector< ScalarType > *b) |
Compute a vector b where the components are the individual dot-products of the i-th columns of A and mv, i.e. . | |
| void | MvScale (MultiVec< ScalarType > &mv, const ScalarType alpha) |
Scale each element of the vectors in *this with alpha. | |
| void | MvScale (MultiVec< ScalarType > &mv, const std::vector< ScalarType > &alpha) |
Scale each element of the i-th vector in *this with alpha[i]. | |
Norm method | |
| void | MvNorm (const MultiVec< ScalarType > &mv, std::vector< typename Teuchos::ScalarTraits< ScalarType >::magnitudeType > *normvec) |
Compute the 2-norm of each individual vector of mv. Upon return, normvec[i] holds the value of , the i-th column of mv. | |
Initialization methods | |
| void | SetBlock (const MultiVec< ScalarType > &A, const std::vector< int > &index, MultiVec< ScalarType > &mv) |
Copy the vectors in A to a set of vectors in mv indicated by the indices given in index. | |
| void | MvRandom (MultiVec< ScalarType > &mv) |
Replace the vectors in mv with random vectors. | |
| void | MvInit (MultiVec< ScalarType > &mv, ScalarType alpha=Teuchos::ScalarTraits< ScalarType >::zero()) |
Replace each element of the vectors in mv with alpha. | |
Print method | |
| void | MvPrint (const MultiVec< ScalarType > &mv, ostream &os) |
Print the mv multi-vector to the os output stream. | |
Any class that inherits from Anasazi::MultiVec will be accepted by the Anasazi templated solvers due to this interface to the Anasazi::MultiVecTraits class.
Definition at line 211 of file AnasaziMultiVec.hpp.
|
||||||||||||||||
|
Creates a new empty
Definition at line 222 of file AnasaziMultiVec.hpp. |
|
||||||||||
|
Creates a new
Definition at line 229 of file AnasaziMultiVec.hpp. |
|
||||||||||||||||
|
Creates a new
The copied vectors from
Definition at line 237 of file AnasaziMultiVec.hpp. |
|
||||||||||||||||
|
Creates a new
The index of the
Definition at line 245 of file AnasaziMultiVec.hpp. |
|
||||||||||||||||
|
Creates a new const
The index of the
Definition at line 253 of file AnasaziMultiVec.hpp. |
|
||||||||||
|
Obtain the vector length of
Definition at line 262 of file AnasaziMultiVec.hpp. |
|
||||||||||
|
Obtain the number of vectors in
Definition at line 266 of file AnasaziMultiVec.hpp. |
|
||||||||||||||||||||||||||||
|
Update
Definition at line 276 of file AnasaziMultiVec.hpp. |
|
||||||||||||||||||||||||||||
|
Replace
Definition at line 283 of file AnasaziMultiVec.hpp. |
|
||||||||||||||||||||||||
|
Compute a dense matrix
Definition at line 288 of file AnasaziMultiVec.hpp. |
|
||||||||||||||||||||
|
Compute a vector
Definition at line 301 of file AnasaziMultiVec.hpp. |
|
||||||||||||||||
|
Scale each element of the vectors in
Definition at line 314 of file AnasaziMultiVec.hpp. |
|
||||||||||||||||
|
Scale each element of the
Definition at line 319 of file AnasaziMultiVec.hpp. |
|
||||||||||||||||
|
Compute the 2-norm of each individual vector of
Definition at line 329 of file AnasaziMultiVec.hpp. |
|
||||||||||||||||||||
|
Copy the vectors in
The Definition at line 340 of file AnasaziMultiVec.hpp. |
|
||||||||||
|
Replace the vectors in
Definition at line 345 of file AnasaziMultiVec.hpp. |
|
||||||||||||||||
|
Replace each element of the vectors in
Definition at line 350 of file AnasaziMultiVec.hpp. |
|
||||||||||||||||
|
Print the
Definition at line 360 of file AnasaziMultiVec.hpp. |
1.3.9.1