HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
matrix.h
Go to the documentation of this file.
1 
24 #ifndef _MATRIX_H_
25 #define _MATRIX_H_
26 
27 typedef struct _mat
28 {
29  float **data;
30  int cols;
31  int rows;
32  int size;
33 } mat_t;
34 
35 /* matrix.c */
36 MEMSPACE int TestSquare ( mat_t MatA );
37 MEMSPACE mat_t MatAlloc ( int rows , int cols );
38 MEMSPACE mat_t MatAllocSQ ( int size );
39 MEMSPACE void MatFree ( mat_t matF );
40 MEMSPACE mat_t MatLoad ( void *V , int rows , int cols );
41 MEMSPACE mat_t MatLoadSQ ( void *V , int size );
42 MEMSPACE void MatPrint ( mat_t matrix );
43 MEMSPACE mat_t DeleteRowCol ( mat_t MatA , int row , int col );
44 MEMSPACE mat_t Transpose ( mat_t MatA );
45 MEMSPACE float Minor ( mat_t MatA , int row , int col );
46 MEMSPACE float Cofactor ( mat_t MatA , int row , int col );
47 MEMSPACE mat_t Adjugate ( mat_t MatA );
48 MEMSPACE float Determinant ( mat_t MatA );
49 MEMSPACE mat_t Invert ( mat_t MatA );
51 MEMSPACE mat_t MatMul ( mat_t MatA , mat_t MatB );
52 MEMSPACE mat_t MatRead ( char *name );
53 MEMSPACE int MatWrite ( char *name , mat_t MatW );
54 #endif // _MATRIX_H_
Cofactor
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...
Definition: matrix.c:317
_mat::data
float ** data
Definition: matrix.h:29
Minor
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.
Definition: matrix.c:297
Adjugate
MEMSPACE mat_t Adjugate(mat_t MatA)
Adjugate is transpose of cofactor matrix of A.
Definition: matrix.c:333
MatFree
MEMSPACE void MatFree(mat_t matF)
Free a matrix.
Definition: matrix.c:117
MEMSPACE
#define MEMSPACE
Definition: user_config.h:17
TestSquare
MEMSPACE int TestSquare(mat_t MatA)
Credits: https://www.cs.rochester.edu/~brown/Crypto/assts/projects/adj.html.
Definition: matrix.c:36
_mat::rows
int rows
Definition: matrix.h:31
_mat
Definition: matrix.h:27
Invert
MEMSPACE mat_t Invert(mat_t MatA)
Calculate Matrix Inverse.
Definition: matrix.c:408
MatLoadSQ
MEMSPACE mat_t MatLoadSQ(void *V, int size)
Load a square matrix.
Definition: matrix.c:179
DeleteRowCol
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.
Definition: matrix.c:216
Transpose
MEMSPACE mat_t Transpose(mat_t MatA)
Transpose matrix.
Definition: matrix.c:268
MatLoad
MEMSPACE mat_t MatLoad(void *V, int rows, int cols)
Load a matrix.
Definition: matrix.c:154
MatWrite
MEMSPACE int MatWrite(char *name, mat_t MatW)
Write a matrix.
Definition: matrix.c:617
MatAllocSQ
MEMSPACE mat_t MatAllocSQ(int size)
Allocate a matrix.
Definition: matrix.c:106
PseudoInvert
MEMSPACE mat_t PseudoInvert(mat_t MatA)
Calculate Pseudo Matrix Inverse Used for least square fitting of non square matrix with excess soluti...
Definition: matrix.c:466
MatPrint
MEMSPACE void MatPrint(mat_t matrix)
Print a matrix.
Definition: matrix.c:190
MatMul
MEMSPACE mat_t MatMul(mat_t MatA, mat_t MatB)
Multiply two matrix.
Definition: matrix.c:500
mat_t
struct _mat mat_t
_mat::size
int size
Definition: matrix.h:32
_mat::cols
int cols
Definition: matrix.h:30
Determinant
MEMSPACE float Determinant(mat_t MatA)
Determinant by recursion using Cofactors.
Definition: matrix.c:358
MatRead
MEMSPACE mat_t MatRead(char *name)
Read a matrix.
Definition: matrix.c:538
MatAlloc
MEMSPACE mat_t MatAlloc(int rows, int cols)
Allocate a matrix.
Definition: matrix.c:48