-
Notifications
You must be signed in to change notification settings - Fork 23
/
README
36 lines (34 loc) · 1.4 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
This is my set of C libraries for doing simple matrix operations and
linear algebra (solving systems of linear equations, eigenvalues, and
matrix inverses).
Here are the basic operations that this library hopes to accomplish:
- Matrix File IO
- Matrix Read (to read a matrix from a file)
- Matrix Copy (to duplicate an existing matrix)
- Matrix Make (to create an n-by-p matrix of Zeros)
- Matrix Free (to release memory)
- Matrix Write (to write to a file)
- Matrix Print (to display a matrix on the screen)
- Simple Matrix Operations
- Identity Matrices
- Matrix Trace (Sum of elements along the diagonal)
- Matrix Transpose (To flip a matrix along the diagonal)
- Matrix Mean (returns the average of each column in a matrix)
- Matrix Multiplication
- Matrix Scaling
- Matrix Covariance
- Matrix Dot Product
- Matrix Dot Diagonal (computes the dot product of the diagonals of two matrices)
- Advanced Matrix Operations
- Singular Value Decomposition
- Gram-Schmidt (For orthonormalising a set of vectors)
- The Power Method (For determining the largest eigenvalue of a large matrix)
- Francis QR Step
- Eigenvalues
- L2-norm distance measures (simiar to Matlab's pdist)
- LU Decomposition of a matrix
- Matrix Determinates
- Matrix Inverts
- Matrix Solver
- Always nice to have:
- Quicksort (and who doesn't love quicksort)