#include "header.h" mat createm(int n,int m) { mat x; x.n=n; x.m=m; x.fp = (float *) calloc(n*m,sizeof(float)); return x; } void printm(mat x) { int i,j; printf("%d\t%d\n",x.n,x.n); for(i=0;i