TMS320C30 MATRIX ARITHMETIC FUNCTIONS
James M. Patterson
Texas Instruments, Inc.
370 South North Lake Boulevard
Altamonte Springs, Florida 32701
Initial release: 12/31/89
dot3
Description: calculates dot product of two 3 length vectors
c = a x b;
Prototype in: matrix.h
Calling sequence: float dot_3();
float a[3];
float b[3];
float c;
c = dot_3( a, b );
dot4
Description: Calculates dot product of two 4 length vectors
Prototype in: matrix.h
Calling sequence: float dot_4();
float a[4];
float b[4];
float c;
c = dot_4( a, b );
dot_n
Description: Calculates dot product of two n length vectors
Prototype in: matrix.h
Calling sequence: float dot_4();
float a[ ];
float b[ ];
float c[ ];
c = dot_n( a, b );
mat_mat3
Description: Calculates product of two 3x3 matrices
Prototype in: matrix.h