20 #ifndef GENERAL_MATRIX_2X1_H 21 #define GENERAL_MATRIX_2X1_H 23 #ifndef SHEAF_DLL_SPEC_H 24 #include "SheafSystem/sheaf_dll_spec.h" 27 #ifndef STD_IOSTREAM_H 28 #include "SheafSystem/std_iostream.h" 34 template <
typename T>
class general_matrix_1x2;
35 template <
typename T>
class general_matrix_1x3;
36 template <
typename T>
class general_matrix_2x2;
37 template <
typename T>
class general_matrix_2x3;
53 class general_matrix_2x1
94 operator const T* ()
const;
112 void assign(
const T& xvalue);
168 template <
typename T>
169 std::ostream& operator<<(std::ostream& xos, const general_matrix_2x1<T>& xm);
174 #endif // ifndef GENERAL_MATRIX_2X1_H static int number_of_columns()
The number of columns.
static int d()
Dimension of the underlying elements.
T * operator[](int xrow)
Pointer to the first element in row xrow of this matrix. Facilitates accessing elements via matrix[i]...
static int number_of_rows()
The number of rows.
General matrix with 1 row and 2 columns.
General matrix with 2 rows and 2 columns.
void multiply(const T &xscalar, general_matrix_2x1< T > &xresult) const
This matrix multiplied by a scalar (pre-allocated).
T components[2]
Linear storage array.
int row_index(int xrow) const
Index for row xrow in the linear storage array.
General matrix with 2 rows and 1 column.
general_matrix_1x2< T > transpose() const
The transpose of the matrix (auto-allocated).
General matrix with 1 row and 3 columns.
General matrix with 2 rows and 3 columns.
Namespace for the fiber_bundles component of the sheaf system.
void assign(const T &xvalue)
Assign all elements of this matrix to the value xvalue.