20 #ifndef GENERAL_MATRIX_1X3_H 21 #define GENERAL_MATRIX_1X3_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_3x1;
36 template <
typename T>
class general_matrix_3x2;
37 template <
typename T>
class general_matrix_3x3;
53 class general_matrix_1x3
94 operator const T* ()
const;
112 void assign(
const T& xvalue);
181 template <
typename T>
182 std::ostream& operator<<(std::ostream& xos, const general_matrix_1x3<T>& xm);
187 #endif // ifndef GENERAL_MATRIX_1X3_H int row_index(int xrow) const
Index for row xrow in the linear storage array.
General matrix with 3 rows and 2 columns.
General matrix with 1 row and 2 columns.
static int number_of_rows()
The number of rows.
void multiply(const T &xscalar, general_matrix_1x3< T > &xresult) const
This matrix multiplied by a scalar (pre-allocated).
static int number_of_columns()
The number of columns.
T * operator[](int xrow)
Pointer to the first element in row xrow of this matrix. Facilitates accessing elements via matrix[i]...
General matrix with 3 rows and 1 column.
void assign(const T &xvalue)
Assign all elements of this matrix to the value xvalue.
T components[3]
Linear storage array.
General matrix with 3 rows and 3 columns.
General matrix with 1 row and 3 columns.
general_matrix_3x1< T > transpose() const
The transpose of the matrix (auto-allocated).
static int d()
Dimension of the underlying elements.
Namespace for the fiber_bundles component of the sheaf system.