zscilib icon indicating copy to clipboard operation
zscilib copied to clipboard

Matrices: Other Factorisations to Consider

Open microbuilder opened this issue 2 years ago • 2 comments

Some other matrix factorisations to consider for implementation in the future: https://nhigham.com/2022/05/18/the-big-six-matrix-factorizations/

microbuilder avatar May 19 '22 06:05 microbuilder

Example of LU decomposition: https://en.wikipedia.org/wiki/LU_decomposition#C_code_example

sdalu avatar Aug 17 '22 10:08 sdalu

@sdalu control systems toolbox for zephyr provides this here: https://github.com/swedishembedded/control/blob/main/src/linalg/lup.c

We also have a whole range of decompositions and advanced algorithms..

https://github.com/swedishembedded/control/blob/main/src/sysid/sr_ukf_parameter_estimation.c https://github.com/swedishembedded/control/blob/main/src/linalg/svd_golub_reinsch.c

mkschreder avatar Aug 31 '22 09:08 mkschreder