HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
MEMSPACE float Cofactor(mat_t MatA, int row, int col)
Cofactor is determinate of minor submatrix * (-1)exp(row+col) Minor submatrix has one less row and co...
MEMSPACE float Minor(mat_t MatA, int row, int col)
Compute determinate of the minor submatrix Minor submatrix has one less row and column as a result.
MEMSPACE mat_t Adjugate(mat_t MatA)
Adjugate is transpose of cofactor matrix of A.
MEMSPACE void MatFree(mat_t matF)
Free a matrix.
MEMSPACE int TestSquare(mat_t MatA)
Credits: https://www.cs.rochester.edu/~brown/Crypto/assts/projects/adj.html.
MEMSPACE mat_t Invert(mat_t MatA)
Calculate Matrix Inverse.
MEMSPACE mat_t MatLoadSQ(void *V, int size)
Load a square matrix.
MEMSPACE mat_t DeleteRowCol(mat_t MatA, int row, int col)
Create smaller matrix by deleatting specified row and colume Used by Minor and Cofactor.
MEMSPACE mat_t Transpose(mat_t MatA)
Transpose matrix.
MEMSPACE mat_t MatLoad(void *V, int rows, int cols)
Load a matrix.
MEMSPACE int MatWrite(char *name, mat_t MatW)
Write a matrix.
MEMSPACE mat_t MatAllocSQ(int size)
Allocate a matrix.
MEMSPACE mat_t PseudoInvert(mat_t MatA)
Calculate Pseudo Matrix Inverse Used for least square fitting of non square matrix with excess soluti...
MEMSPACE void MatPrint(mat_t matrix)
Print a matrix.
MEMSPACE mat_t MatMul(mat_t MatA, mat_t MatB)
Multiply two matrix.
MEMSPACE float Determinant(mat_t MatA)
Determinant by recursion using Cofactors.
MEMSPACE mat_t MatRead(char *name)
Read a matrix.
MEMSPACE mat_t MatAlloc(int rows, int cols)
Allocate a matrix.