#include <iostream>
#include <vector>
Go to the source code of this file.
|
| static void | dai::matrix::adjoint (std::vector< std::vector< float >> &A, std::vector< std::vector< float >> &adj) |
| |
| static float | dai::matrix::determinant (std::vector< std::vector< float >> &A, size_t n) |
| |
| static void | dai::matrix::getCofactor (std::vector< std::vector< float >> &A, std::vector< std::vector< float >> &temp, size_t p, size_t q, size_t n) |
| |
| bool | dai::matrix::matInv (std::vector< std::vector< float >> &A, std::vector< std::vector< float >> &inverse) |
| |
| std::vector< std::vector< float > > | dai::matrix::matMul (std::vector< std::vector< float >> &firstMatrix, std::vector< std::vector< float >> &secondMatrix) |
| | Matrix multiplication between two matrixs of shape (m x n) and (n x p) of type float. -> firstMatrix * secondMatrix. More...
|
| |