Skip to content

QuantitativeBytes Linear Algebra Library [C++]. A simple implementation of various common linear algebra functions, intended for educational purposes.

License

Notifications You must be signed in to change notification settings

QuantitativeBytes/qbLinAlg

Repository files navigation

qbLinAlg

Linear algebra library for C++, created to accompany the corresponding series of videos on the QuantitativeBytes YouTube channel at:

www.youtube.com/c/QuantitativeBytes.

Many excellent linear algebra libraries already exist for C++ and as such this code is intended to be primarily for educational purposes, rather than as an alternative to those. It is intended to be studied alongside the corresponding series of videos on the QuantitativeBytes YouTube channel, the full playlist for which can be found here:

https://www.youtube.com/playlist?list=PL3WoIG-PLjSv9vFx2dg0BqzDZH_6qzF8-

As this code is paired with the corresponding videos on the QuantitativeBytes YouTube channel, pull requests will not be accepted.

Changes

New versions of the matrix and vector classes, qbVector2, qbVector3, qbVector4, qbMatrix33 and qbMatrix44 have been implemented for handling 2-element, 3-element and 4-element vectors and 3x3 and 4x4 matrices. These avoid the use of heap memory and are therefore faster than the generic qbVector and qbMatrix2 classes in cases where a fixed size is useful. This was implemented to support the qbRay ray tracer project and more details can be found over on the QuantitativeBytes YouTube channel here:

https://youtu.be/EQlXfCIBpdg https://youtu.be/sr1OA7NPwcI

Specific functions

qbPCA.h

Implementation of Principal Component Analysis (PCA).

https://youtu.be/ifxUSa5r_Ls

qbQR.h

Function to perform QR decomposition on the given matrix, returning an orthogonal matrix, Q, and an upper-triangular matrix, R. Uses the method of Householder reflections to perform the decomposition.

https://youtu.be/MR54VHqhROw

qbEIG.h

Functions for computing the eigenvectors and eigenvalues for a given matrix. Contains an implementation of the power iteration method for computing the dominant eigenvector, the inverse-power-iteration method and an implementation of the QR algorithm to estimate eigenvalue / eigenvector pairs for a given symmetric matrix.

https://youtu.be/hnLyWa2_hd8

https://youtu.be/tYqOrvUOMFc

qbLinSolve.h

Function for solving systems of linear equations. Uses an implementation of Gaussian elimination and back-substitution.

https://youtu.be/GKkUU4T6o08

https://youtu.be/NJIv0xH-S0I

https://youtu.be/KsrlAnEmRNE

qbLSQ.h

Function for computing the linear least squares solution to an over-determined system of linear equations.

https://youtu.be/4UVPXs3vIHk

https://youtu.be/fG1JXf7WSQw

qbMatrix.h

Class for handling matrices. Implements a number of useful functions:

qbMatrix - Inverse()

Compute the inverse of the matrix using the Gauss-Jordan elimination method.

https://youtu.be/wOlG_fnd3v8

https://youtu.be/AEuNHdgn-R8

https://youtu.be/JWM8Y8b1ZVQ

qbMatrix - RowEchelon()

Convert the matrix to row echelon form.

qbMatrix - Transpose()

Transpose the matrix.

qbMatrix - Determinant()

Compute the determinant of the matrix.

https://youtu.be/YVk0nYrwBb0

qbVector.h

Class for handling vectors. Implements a number of useful functions:

https://youtu.be/YfWX-EsvX7c

https://youtu.be/c5AB5T7LBCI

qbVector - Normalized()

Returns a normalized copy of the vector.

qbVector - Normalize()

Normalizes the vector 'in-place'.

qbVector - dot()

Computes the vector dot product.

qbVector - cross()

Computes the vector cross product.

About

QuantitativeBytes Linear Algebra Library [C++]. A simple implementation of various common linear algebra functions, intended for educational purposes.

Resources

License

Stars

Watchers

Forks

Languages