20 |
#include "EsysAssert.h" |
#include "EsysAssert.h" |
21 |
|
|
22 |
#include "DataVector.h" |
#include "DataVector.h" |
23 |
|
#include "LocalOps.h" |
24 |
|
|
25 |
#include <boost/python/numeric.hpp> |
#include <boost/python/numeric.hpp> |
26 |
#include <boost/python/object.hpp> |
#include <boost/python/object.hpp> |
771 |
|
|
772 |
/** |
/** |
773 |
\brief |
\brief |
774 |
|
solves a local eigenvalue problem |
775 |
|
|
776 |
|
\param in - Input - The left hand side. |
777 |
|
\param ev - Output - The eigenvalues |
778 |
|
*/ |
779 |
|
inline |
780 |
|
void |
781 |
|
DataArrayView::eigenvalues(const DataArrayView& in, |
782 |
|
DataArrayView& ev); |
783 |
|
|
784 |
|
|
785 |
|
/** |
786 |
|
\brief |
787 |
Perform a matrix multiply of the given views. |
Perform a matrix multiply of the given views. |
788 |
This is purely a utility method and has no bearing on this view. |
This is purely a utility method and has no bearing on this view. |
789 |
|
|