HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
23 #include "user_config.h"
38 return( (MatA.
rows == MatA.
cols) ? 1 : 0 );
58 printf(
"MatAlloc: rows < 1\n");
66 printf(
"MatAlloc: cols < 1\n");
122 for (i=0;i<matF.
rows;i++)
132 printf(
"MatFree: attempt to free null matF row: %d\n", i);
142 printf(
"MatFree: attempt to free null matF\n");
157 float *f = (
float *) V;
166 MatA.
data[r][c] = f[k++];
195 for(r=0;r<matrix.
rows;++r)
197 for(c=0;c<matrix.
cols;++c)
221 int rows = MatA.
rows;
222 int cols = MatA.
cols;
228 printf(
"DeleteRowCol cols:%d < 2 error\n",cols);
236 printf(
"DeleteRowCol rows:%d < 2 error\n",rows);
242 for(r=0;r<MatA.
rows;++r)
248 for(c=0;c<MatA.
cols;++c)
253 MatM.
data[rM][cM] = MatA.
data[r][c];
274 for (r = 0; r < MatA.
rows; r++)
277 for( c = 0 ; c < MatA.
cols ; c++ )
319 float D =
Minor(MatA, row, col);;
321 D *= ( ((row+col) & 1) ? -1.0 : 1.0);
339 for(r = 0; r< MatA.
rows;++r)
341 for(c = 0; c < MatA.
cols;++c)
367 printf(
"Determinate: Matrix MUST be square!\n");
375 printf(
"Determinate: Matrix size MUST be > 0!\n");
392 for (n=0;n<MatA.
size;++n)
426 printf(
"Determinant(MatA) = 0!\n\n");
432 printf(
"Determinant(MatA):\n%e\n\n", (
double) D);
437 printf(
"Adjugate(MatA)\n");
441 for (r=0;r<MatAdj.
rows;++r)
444 for (c=0;c<MatAdj.
cols;++c)
446 MatAdj.
data[r][c] /= D;
450 printf(
"Adjugate(MatA)/Determinant(MatA)\n");
509 printf(
"error MatA cols(%d) != MatB rows(%d)\n", MatA.
cols, MatB.
rows);
513 for (rA = 0; rA < MatA.
rows; ++rA)
516 for (cB = 0; cB < MatB.
cols; ++cB)
519 for (rB = 0; rB < MatB.
rows; ++rB)
555 fp =
fopen(name,
"rb");
562 ptr =
fgets(tmp,253,fp);
570 cnt =
sscanf(ptr,
"Matrix R:%d C:%d", (
int *) &rows, (
int *) &cols);
571 if(rows < 1 || cols < 1)
573 printf(
"sscanf: %d\n",cnt);
574 printf(
"MatRead expected header: Matrix R:%d C:%d\n",tmp);
583 printf(
"MatRead(%s: &d,&d) could not alloc memory\n", name, rows,cols);
591 ptr =
fgets(tmp,253,fp);
623 fp =
fopen(name,
"wb");
630 for(r=0;r<MatW.
rows;++r)
632 for(c=0;c<MatW.
cols;++c)
752 int main(
int argc,
char *argv[])
754 mat_t MatA,MatX,MatY;
768 printf(
"Adjugate(MatA)\n");
799 printf(
"Set of three display positions\n");
808 printf(
"Correponding touch screen positions, differing scale and skew\n");
819 printf(
"Solution Matrix to translate touch screen to screen positions\n");
845 printf(
"Set of five display positions\n");
854 printf(
"Correponding touch screen positions, differing scale and skew\n");
859 printf(
"Compute pseudo-inverse matrix, 1/(AT � A) � AT\n");
861 printf(
"PI = Pseudo Invert(A)\n");
865 printf(
"Solution Matrix to translate touch screen to screen positions\n");
867 MatR =
MatMul(MatPI,MatX);
874 MatR =
MatMul(MatPI,MatY);
MEMSPACE FILE * fopen(const char *path, const char *mode)
POSIX Open a file with path name and ascii file mode string.
MEMSPACE mat_t MatLoadSQ(void *V, int size)
Load a square matrix.
MEMSPACE int printf(const char *format,...)
MEMSPACE mat_t Transpose(mat_t MatA)
Transpose matrix.
MEMSPACE double strtod(const char *nptr, char **endptr)
MEMSPACE float Determinant(mat_t MatA)
Determinant by recursion using Cofactors.
MEMSPACE mat_t Invert(mat_t MatA)
Calculate Matrix Inverse.
void * safecalloc(int size, int elements)
Safe Alloc - Display Error message if Calloc fails.
MEMSPACE char * fgets(char *str, int size, FILE *stream)
get a string from stdin See fdevopen() sets stream->put get for TTY devices
MEMSPACE int fprintf(FILE *fp, const char *format,...)
fprintf function Example user defined printf function using fputc for I/O This method allows I/O to d...
MEMSPACE void MatPrint(mat_t matrix)
Print a 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.
void safefree(void *p)
Safe free - Only free a pointer if it is in malloc memory range.
MEMSPACE int MatWrite(char *name, mat_t MatW)
Write a matrix.
MEMSPACE mat_t Adjugate(mat_t MatA)
Adjugate is transpose of cofactor matrix of A.
MEMSPACE uint16_t sum(char *name)
MEMSPACE mat_t MatMul(mat_t MatA, mat_t MatB)
Multiply two matrix.
MEMSPACE mat_t MatLoad(void *V, int rows, int cols)
Load a matrix.
MEMSPACE mat_t MatAllocSQ(int size)
Allocate a matrix.
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 void sep()
print seperator
MEMSPACE int fclose(FILE *stream)
POSIX close a file stream.
int lines
Config file line number.
int main(void)
main() for gpib project
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 int TestSquare(mat_t MatA)
Credits: https://www.cs.rochester.edu/~brown/Crypto/assts/projects/adj.html.
MEMSPACE mat_t MatRead(char *name)
Read a matrix.
MEMSPACE mat_t MatAlloc(int rows, int cols)
Allocate a matrix.
int sscanf(const char *strp, const char *fmt,...)
MEMSPACE void MatFree(mat_t matF)
Free 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...