- Dropped support of C++11, now requires a C++14 or higher compiler
- Added support for
std::complex<T>
, closing Issue #58 - Added more
NdArray
constructors for STL containers includingstd::vector<std::vector<T>>
, closing Issue #59 - Added
polyfit
routine inline with Numpypolyfit
, closing Issue #61 - Added ability to use
NdArray
as container for generic structs - Non-linear least squares fitting using Gauss-Newton
- Root finding routines
- Numerical integration routines
lu_decomposition
andpivotLU_decomposition
added toLinalg
namespace- New STL iterators added to
NdArray
iterator
const_iterator
reverse_iterator
const_reverse_iterator
column_iterator
const_column_iterator
reverse_column_iterator
const_reverse_column_iterator
- Added
rodriguesRotation
andwahbasProblem
toRotations
namespace - Various efficiency and/or bug fixes