Go to the documentation of this file.00001 #include "arith.h"
00002
00003 mat_copy(x,y,n,p)
00004 MATRIX x,y;
00005 int n,p;
00006 {
00007 int i,j;
00008
00009 for(i=0; i<n; i++){
00010 for(j=0; j<p; j++){
00011 y[i][j] = x[i][j];
00012 }
00013 }
00014 }