lin
Classes | Typedefs
matrix.hpp File Reference
#include "../config.hpp"
#include "../traits.hpp"
#include "tensor.hpp"
#include <type_traits>

Go to the source code of this file.

Classes

class  lin::Matrix< T, R, C, MR, MC >
 Generic matrix. More...
 
struct  lin::internal::_elem< Matrix< T, R, C, MR, MC > >
 
struct  lin::internal::_dims< Matrix< T, R, C, MR, MC > >
 
struct  lin::internal::_eval< C, std::enable_if_t< is_matrix< C >::value > >
 

Typedefs

template<size_t R, size_t C, size_t MR = R, size_t MC = C>
using lin::Matrixf = Matrix< float, R, C, MR, MC >
 Generic float matrix. More...
 
typedef Matrixf< 2, 2 > lin::Matrix2x2f
 Two by two float matrix.
 
typedef Matrixf< 3, 2 > lin::Matrix3x2f
 Three by two float matrix.
 
typedef Matrixf< 4, 2 > lin::Matrix4x2f
 Four by two float matrix.
 
typedef Matrixf< 2, 3 > lin::Matrix2x3f
 Two by three float matrix.
 
typedef Matrixf< 3, 3 > lin::Matrix3x3f
 Three by three float matrix.
 
typedef Matrixf< 4, 3 > lin::Matrix4x3f
 Four by three float matrix.
 
typedef Matrixf< 2, 4 > lin::Matrix2x4f
 Two by four float matrix.
 
typedef Matrixf< 3, 4 > lin::Matrix3x4f
 Three by four float matrix.
 
typedef Matrixf< 4, 4 > lin::Matrix4x4f
 Four by four float matrix.
 
template<size_t R, size_t C, size_t MR = R, size_t MC = C>
using lin::Matrixd = Matrix< double, R, C, MR, MC >
 Generic double matrix. More...
 
typedef Matrixd< 2, 2 > lin::Matrix2x2d
 Two by two double matrix.
 
typedef Matrixd< 3, 2 > lin::Matrix3x2d
 Three by two double matrix.
 
typedef Matrixd< 4, 2 > lin::Matrix4x2d
 Four by two double matrix.
 
typedef Matrixd< 2, 3 > lin::Matrix2x3d
 Two by three double matrix.
 
typedef Matrixd< 3, 3 > lin::Matrix3x3d
 Three by three double matrix.
 
typedef Matrixd< 4, 3 > lin::Matrix4x3d
 Four by three double matrix.
 
typedef Matrixd< 2, 4 > lin::Matrix2x4d
 Two by four double matrix.
 
typedef Matrixd< 3, 4 > lin::Matrix3x4d
 Three by four double matrix.
 
typedef Matrixd< 4, 4 > lin::Matrix4x4d
 Four by four double matrix.
 

Detailed Description

Author
Kyle Krol