C++ main module for mmsd Package  1.0
LAP_UpperMatrix.h
Go to the documentation of this file.
1 #ifndef LAP_UpperMatrix_H
2 #define LAP_UpperMatrix_H
3 
4 
5 #include "LAP_Object.h"
6 
7 
15 
16 class LAP_UpperMatrix: public virtual LAP_Object {
17 
18  SP_OBJECT(LAP_UpperMatrix);
19 
20 private:
21  // ATTRIBUTES
22 
23 
24 
25  // ASSOCIATIONS
26 
27  // METHOD
28 
29 
30 public:
31  // CONSTRUCTORS
34  }
35 
36 
37 
38  // DESTRUCTORS
41  virtual ~LAP_UpperMatrix() {
42  }
43 
44 
45 
46 
47 
48 
49 
50 public:
51 
52 
53  // LINEAR Method
54  //===============
55 
56  // ----------------
57  // vector product
58  // ----------------
59 
60 
61 
62  // ----------------
63  // matrix product
64  // ----------------
65 
66 
67  // ----------------------
68  // eigen values & vectors
69  // ------------------------
70 
71 
72  // -----------------------
73  // linear system solvers
74  // -----------------------
75 
76 
77 
78  // -----------------------
79  // STRING Representation
80  // ----------------------
81 
82 
83 };
84 #endif
virtual ~LAP_UpperMatrix()
destroy a matrix
Definition: LAP_UpperMatrix.h:41
DEFINE_SPTR(LAP_UpperMatrix)
LAP_UpperMatrix()
build a matrix
Definition: LAP_UpperMatrix.h:33
this class describes a general upper matrix
Definition: LAP_UpperMatrix.h:16
This class is the base class of all lapack objects.
Definition: LAP_Object.h:17