![]() |
Reference documentation for deal.II version 8.4.2
|
#include <deal.II/lac/matrix_lib.h>
Public Member Functions | |
| ScaledMatrix () | |
| template<typename MatrixType > | |
| ScaledMatrix (const MatrixType &M, const double factor) | |
| ~ScaledMatrix () | |
| template<typename MatrixType > | |
| void | initialize (const MatrixType &M, const double factor) |
| void | clear () |
| void | vmult (VectorType &w, const VectorType &v) const |
| void | Tvmult (VectorType &w, const VectorType &v) const |
Public Member Functions inherited from Subscriptor | |
| Subscriptor () | |
| Subscriptor (const Subscriptor &) | |
| virtual | ~Subscriptor () |
| Subscriptor & | operator= (const Subscriptor &) |
| void | subscribe (const char *identifier=0) const |
| void | unsubscribe (const char *identifier=0) const |
| unsigned int | n_subscriptions () const |
| void | list_subscribers () const |
| DeclException3 (ExcInUse, int, char *, std::string &,<< "Object of class "<< arg2<< " is still used by "<< arg1<< " other objects."<< "\"<< "(Additional information: "<< arg3<< ")\"<< "See the entry in the Frequently Asked Questions of "<< "deal.II (linked to from http://www.dealii.org/) for "<< "a lot more information on what this error means and "<< "how to fix programs in which it happens.") | |
| DeclException2 (ExcNoSubscriber, char *, char *,<< "No subscriber with identifier <"<< arg2<< "> subscribes to this object of class "<< arg1<< ". Consequently, it cannot be unsubscribed.") | |
| template<class Archive > | |
| void | serialize (Archive &ar, const unsigned int version) |
Private Attributes | |
| PointerMatrixBase< VectorType > * | m |
| double | factor |
A matrix that is the multiple of another matrix.
Matrix-vector products of this matrix are composed of those of the original matrix with the vector and then scaling of the result by a constant factor.
Definition at line 159 of file matrix_lib.h.
|
inline |
Constructor leaving an uninitialized object.
Definition at line 511 of file matrix_lib.h.
|
inline |
Constructor with initialization.
Definition at line 521 of file matrix_lib.h.
|
inline |
Destructor
Definition at line 555 of file matrix_lib.h.
|
inline |
Initialize for use with a new matrix and factor.
Definition at line 533 of file matrix_lib.h.
|
inline |
Reset the object to its original state.
Definition at line 545 of file matrix_lib.h.
|
inline |
Matrix-vector product.
Definition at line 564 of file matrix_lib.h.
|
inline |
Transposed matrix-vector product.
Definition at line 574 of file matrix_lib.h.
|
private |
The matrix.
Definition at line 201 of file matrix_lib.h.
|
private |
The scaling factor;
Definition at line 205 of file matrix_lib.h.
1.8.12