/* @(#)matrix.h 1.7 7/1/93 1 */ #ifndef __MATRIX_DEFINED #define __MATRIX_DEFINED /* float *matadd(float z[][], float x[][], float y[][], int r, int s); */ float *matadd(void *, void *, void *, int r, int s); /* float *matmul(float z[][], float x[][], float y[][], int r, int s ,int t); */ float *matmul(void *, void *, void *, int r, int s, int t); /* float *matscalmult(float z[][], float x[][], float a, int r, int s); */ float *matscalmult(void *, void *, float a, int r, int s); /* float *matsub(float z[][], float x[][], float y[][], int r, int s); */ float *matsub(void *, void *, void *, int r, int s); #endif