123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- /**************************************************************************
- **
- ** Copyright (C) 1993 David E. Steward & Zbigniew Leyk, all rights reserved.
- **
- ** Meschach Library
- **
- ** This Meschach Library is provided "as is" without any express
- ** or implied warranty of any kind with respect to this software.
- ** In particular the authors shall not be liable for any direct,
- ** indirect, special, incidental or consequential damages arising
- ** in any way from use of the software.
- **
- ** Everyone is granted permission to copy, modify and redistribute this
- ** Meschach Library, provided:
- ** 1. All copies contain this copyright notice.
- ** 2. All modified copies shall carry a notice stating who
- ** made the last modification and the date of such modification.
- ** 3. No charge is made for this software or works derived from it.
- ** This clause shall not be construed as constraining other software
- ** distributed on the same medium as this software, nor is a
- ** distribution fee considered a charge.
- **
- ***************************************************************************/
- static char rcsid[] = "$Id: copy.c,v 1.2 1994/01/13 05:37:14 des Exp $";
- #include <stdio.h>
- #include "matrix.h"
- /* _m_copy -- copies matrix into new area
- -- out(i0:m,j0:n) <- in(i0:m,j0:n) */
- #ifndef ANSI_C
- MAT *_m_copy(in,out,i0,j0)
- MAT *in,*out;
- unsigned int i0,j0;
- #else
- MAT *_m_copy(const MAT *in, MAT *out, unsigned int i0, unsigned int j0)
- #endif
- {
- unsigned int i /* ,j */;
- if ( in==MNULL )
- error(E_NULL,"_m_copy");
- if ( in==out )
- return (out);
- if ( out==MNULL || out->m < in->m || out->n < in->n )
- out = m_resize(out,in->m,in->n);
- for ( i=i0; i < in->m; i++ )
- MEM_COPY(&(in->me[i][j0]),&(out->me[i][j0]),
- (in->n - j0)*sizeof(Real));
- /* for ( j=j0; j < in->n; j++ )
- out->me[i][j] = in->me[i][j]; */
- return (out);
- }
- /* _v_copy -- copies vector into new area
- -- out(i0:dim) <- in(i0:dim) */
- #ifndef ANSI_C
- VEC *_v_copy(in,out,i0)
- VEC *in,*out;
- unsigned int i0;
- #else
- VEC *_v_copy(const VEC *in, VEC *out, unsigned int i0)
- #endif
- {
- /* unsigned int i,j; */
- if ( in==VNULL )
- error(E_NULL,"_v_copy");
- if ( in==out )
- return (out);
- if ( out==VNULL || out->dim < in->dim )
- out = v_resize(out,in->dim);
- MEM_COPY(&(in->ve[i0]),&(out->ve[i0]),(in->dim - i0)*sizeof(Real));
- /* for ( i=i0; i < in->dim; i++ )
- out->ve[i] = in->ve[i]; */
- return (out);
- }
- /* px_copy -- copies permutation 'in' to 'out'
- -- out is resized to in->size */
- #ifndef ANSI_C
- PERM *px_copy(in,out)
- PERM *in,*out;
- #else
- PERM *px_copy(const PERM *in, PERM *out)
- #endif
- {
- /* int i; */
- if ( in == PNULL )
- error(E_NULL,"px_copy");
- if ( in == out )
- return out;
- if ( out == PNULL || out->size != in->size )
- out = px_resize(out,in->size);
- MEM_COPY(in->pe,out->pe,in->size*sizeof(unsigned int));
- /* for ( i = 0; i < in->size; i++ )
- out->pe[i] = in->pe[i]; */
- return out;
- }
- /*
- The .._move() routines are for moving blocks of memory around
- within Meschach data structures and for re-arranging matrices,
- vectors etc.
- */
- /* m_move -- copies selected pieces of a matrix
- -- moves the m0 x n0 submatrix with top-left cor-ordinates (i0,j0)
- to the corresponding submatrix of out with top-left co-ordinates
- (i1,j1)
- -- out is resized (& created) if necessary */
- #ifndef ANSI_C
- MAT *m_move(in,i0,j0,m0,n0,out,i1,j1)
- MAT *in, *out;
- int i0, j0, m0, n0, i1, j1;
- #else
- MAT *m_move(const MAT *in, int i0,int j0, int m0,int n0,
- MAT *out, int i1, int j1)
- #endif
- {
- int i;
- if ( ! in )
- error(E_NULL,"m_move");
- if ( i0 < 0 || j0 < 0 || i1 < 0 || j1 < 0 || m0 < 0 || n0 < 0 ||
- i0+m0 > in->m || j0+n0 > in->n )
- error(E_BOUNDS,"m_move");
- if ( ! out )
- out = m_resize(out,i1+m0,j1+n0);
- else if ( i1+m0 > out->m || j1+n0 > out->n )
- out = m_resize(out,max(out->m,i1+m0),max(out->n,j1+n0));
- for ( i = 0; i < m0; i++ )
- MEM_COPY(&(in->me[i0+i][j0]),&(out->me[i1+i][j1]),
- n0*sizeof(Real));
- return out;
- }
- /* v_move -- copies selected pieces of a vector
- -- moves the length dim0 subvector with initial index i0
- to the corresponding subvector of out with initial index i1
- -- out is resized if necessary */
- #ifndef ANSI_C
- VEC *v_move(in,i0,dim0,out,i1)
- VEC *in, *out;
- int i0, dim0, i1;
- #else
- VEC *v_move(const VEC *in, int i0, int dim0,
- VEC *out, int i1)
- #endif
- {
- if ( ! in )
- error(E_NULL,"v_move");
- if ( i0 < 0 || dim0 < 0 || i1 < 0 ||
- i0+dim0 > in->dim )
- error(E_BOUNDS,"v_move");
- if ( (! out) || i1+dim0 > out->dim )
- out = v_resize(out,i1+dim0);
- MEM_COPY(&(in->ve[i0]),&(out->ve[i1]),dim0*sizeof(Real));
- return out;
- }
- /* mv_move -- copies selected piece of matrix to a vector
- -- moves the m0 x n0 submatrix with top-left co-ordinate (i0,j0) to
- the subvector with initial index i1 (and length m0*n0)
- -- rows are copied contiguously
- -- out is resized if necessary */
- #ifndef ANSI_C
- VEC *mv_move(in,i0,j0,m0,n0,out,i1)
- MAT *in;
- VEC *out;
- int i0, j0, m0, n0, i1;
- #else
- VEC *mv_move(const MAT *in, int i0,int j0, int m0, int n0,
- VEC *out, int i1)
- #endif
- {
- int dim1, i;
- if ( ! in )
- error(E_NULL,"mv_move");
- if ( i0 < 0 || j0 < 0 || m0 < 0 || n0 < 0 || i1 < 0 ||
- i0+m0 > in->m || j0+n0 > in->n )
- error(E_BOUNDS,"mv_move");
- dim1 = m0*n0;
- if ( (! out) || i1+dim1 > out->dim )
- out = v_resize(out,i1+dim1);
- for ( i = 0; i < m0; i++ )
- MEM_COPY(&(in->me[i0+i][j0]),&(out->ve[i1+i*n0]),n0*sizeof(Real));
- return out;
- }
- /* vm_move -- copies selected piece of vector to a matrix
-
- -- moves the subvector with initial index i0 and length m1*n1 to
- the m1 x n1 submatrix with top-left co-ordinate (i1,j1)
- -- copying is done by rows
- -- out is resized if necessary */
- #ifndef ANSI_C
- MAT *vm_move(in,i0,out,i1,j1,m1,n1)
- VEC *in;
- MAT *out;
- int i0, i1, j1, m1, n1;
- #else
- MAT *vm_move(const VEC *in, int i0,
- MAT *out, int i1, int j1, int m1, int n1)
- #endif
- {
- int dim0, i;
- if ( ! in )
- error(E_NULL,"vm_move");
- if ( i0 < 0 || i1 < 0 || j1 < 0 || m1 < 0 || n1 < 0 ||
- i0+m1*n1 > in->dim )
- error(E_BOUNDS,"vm_move");
- if ( ! out )
- out = m_resize(out,i1+m1,j1+n1);
- else
- out = m_resize(out,max(i1+m1,out->m),max(j1+n1,out->n));
- dim0 = m1*n1;
- for ( i = 0; i < m1; i++ )
- MEM_COPY(&(in->ve[i0+i*n1]),&(out->me[i1+i][j1]),n1*sizeof(Real));
- return out;
- }
|