next up previous contents
Next: Unit matrix Up: Matrix algebra Previous: Matrix algebra   Contents

Zero matrix

 
/* sphzm - zero matrix */

void sphzm(z) double z[3][3]; {int i, j;
for (i=0; i<3; i++) for (j=0; j<3; j++) z[i][j]=0.0;
}



Pedro Hernandez 2004-05-13