mat_copy.c
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 }


euslisp
Author(s): Toshihiro Matsui
autogenerated on Thu Sep 3 2015 10:36:20