-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path_newmat.dox
More file actions
24 lines (22 loc) · 1.17 KB
/
_newmat.dox
File metadata and controls
24 lines (22 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/// \ingroup newmat
///@{
/// \file _newmat.dox Introduction to Newmat.
///
/// \page newmat Newmat matrix manipulation library.
///This package is intended for scientists and engineers who need to manipulate a variety of types of
///matrices using standard matrix operations. Emphasis is on the kind of operations needed in
///statistical calculations such as least squares, linear equation solve and eigenvalues.
///
///It supports a variety of matrix types and the standard matrix operations.
///Currently, only one element type (float or double) is supported.
///
///The package includes the operations Kronecker product, Schur (elementwise) product, concatenation,
///inverse, transpose, conversion between types, submatrix, determinant, Cholesky decomposition,
///QR decomposition, singular value decomposition, eigenvalues of a symmetric matrix, sorting,
///fast Fourier transform, fast trigonometric transforms, printing and an interface with
///Numerical Recipes in C.
///
///It is intended for matrices in the range 10 x 10 to the maximum size your machine will
///accommodate in a single array. The package will work for very small matrices but becomes
///rather inefficient.
///@}