// file: lecture_04/example.h // // make sure definitions are only made once // #ifndef ISIP_EXAMPLE #define ISIP_EXAMPLE // system include files // #include #include #include #include // declare important constants // #define NITER (long)10 // declare local functions // bool minit(float* mat, long nrows, long ncols); bool mmult(float* mat3, float* mat1, float* mat2, long nrows, long ncols); bool mprint(float* mat, long nrows, long ncols); // end of include file // #endif