mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
matnxn.hpp File Reference

Provides the definition of a generic NxN matrix for mathematical operations. More...

#include "mat.hpp"
#include "matnxn.inl"
Include dependency graph for matnxn.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  mal_math::mat< a, b, T >
 Definition of matrix with dimensions rows x columns and type T More...
 

Namespaces

namespace  mal_math
 Contains mathematical utility functions and classes.
 

Detailed Description

Provides the definition of a generic NxN matrix for mathematical operations.

Author
malatindez (Vladyslav Ohlii)
Date
12/09/2023

This header file contains the definition of a templated NxN matrix structure, along with the necessary constructors, operators, and utility functions for various mathematical operations. The matrix can be used for linear transformations, matrix multiplication, and other similar operations. The matrix also allows for type flexibility and can be initialized with various data types.

Note
Warning manipulations are done to prevent unwanted compiler warnings.
Warning
This header contains some advanced C++ features, make sure to understand these features before making modifications.

Definition in file matnxn.hpp.