|
AbstractLinAlgPack: C++ Interfaces For Vectors, Matrices And Related Linear Algebra Objects
Version of the Day
|
Abstract interface for inner products. More...
#include <AbstractLinAlgPack_InnerProduct.hpp>

Public Member Functions | |
| virtual | ~InnerProduct () |
| | |
| virtual value_type | inner_prod (const Vector &v1, const Vector &v2) const =0 |
| Compute the inner product of two vectors. | |
Abstract interface for inner products.
ToDo: Finish documentaion
Definition at line 53 of file AbstractLinAlgPack_InnerProduct.hpp.
| virtual AbstractLinAlgPack::InnerProduct::~InnerProduct | ( | ) | [inline, virtual] |
Definition at line 57 of file AbstractLinAlgPack_InnerProduct.hpp.
| virtual value_type AbstractLinAlgPack::InnerProduct::inner_prod | ( | const Vector & | v1, |
| const Vector & | v2 | ||
| ) | const [pure virtual] |
Compute the inner product of two vectors.
Preconditions:
Postconditions:
| v1 | [in] First vector |
| v2 | [in] Second vector |
Implemented in AbstractLinAlgPack::InnerProductDot.
1.7.6.1