linmath.h alternatives and similar libraries
Based on the "Math" category.
Alternatively, view linmath.h alternatives based on common mentions on social networks and blogs.
-
OpenBLAS
OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version. -
Eigen
A high-level C++ library of template headers for linear algebra, matrix and vector operations, numerical solvers and related algorithms. [MPL2] -
TinyExpr
tiny recursive descent expression parser, compiler, and evaluation engine for math expressions -
MIRACL
MIRACL Cryptographic SDK: Multiprecision Integer and Rational Arithmetic Cryptographic Library is a C software library that is widely regarded by developers as the gold standard open source SDK for elliptic curve cryptography (ECC). -
NT2
A SIMD-optimized numerical template library that provides an interface with MATLAB-like syntax. [Boost] -
LibTomMath
LibTomMath is a free open source portable number theoretic multiple-precision integer library written entirely in C. -
ExprTK
C++ Mathematical Expression Parsing And Evaluation Library https://www.partow.net/programming/exprtk/index.html -
muparser
official repository of the muparser fast math parser library -
GMTL
Generic Math Template Library (forked from http://ggt.sourceforge.net/) -
blaze
high-performance C++ math library for dense and sparse arithmetic. [BSD] -
safe_numerics
Replacements to standard numeric types which throw exceptions on errors -
Versor
[older version] Versor 1.0 C++ library for conformal geometric algebra draw routines -
Xerus
A general purpose library for numerical calculations with higher order tensors, Tensor-Train Decompositions / Matrix Product States and other Tensor Networks -
Mission : Impossible (AutoDiff)
A concise C++17 implementation of automatic differentiation (operator overloading) -
SLIMCPP
Simple Long Integer Math for C++. Lightweight cross-platform header-only library what implements big integer arithmetic in С++17. -
ceval
A C/C++ library for parsing and evaluation of arithmetic expressions. -
macadam
Type-generic math and numerical library supporting c99 and cpp98 (header only). -
GMP
A C/C++ library for arbitrary precision arithmetic, operating on signed integers, rational numbers, and floating-point numbers. [LGPL3 & GPL2] -
Armadillo
A high quality C++ linear algebra library, aiming towards a good balance between speed and ease of use. The syntax (API) is deliberately similar to Matlab. [MPL2]
Less time debugging, more time building
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of linmath.h or a related project?
Popular Comparisons
README
linmath.h -- A small library for linear math as required for computer graphics
linmath.h provides the most used types required for programming computer graphics:
vec3 -- 3 element vector of floats vec4 -- 4 element vector of floats (4th component used for homogenous computations) mat4x4 -- 4 by 4 elements matrix, computations are done in column major order quat -- quaternion
The types are deliberately named like the types in GLSL. In fact they are meant to be used for the client side computations and passing to same typed GLSL uniforms.