You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
856 B
28 lines
856 B
C Copyright(C) 1999-2020 National Technology & Engineering Solutions
|
|
C of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
|
|
C NTESS, the U.S. Government retains certain rights in this software.
|
|
C
|
|
C See packages/seacas/LICENSE for details
|
|
|
|
C=======================================================================
|
|
SUBROUTINE MOVREA (NMOV, RFROM, RTO)
|
|
C=======================================================================
|
|
|
|
C --*** MOVREA *** (GJOIN) Moves real data
|
|
C -- Written by Amy Gilkey - revised 02/22/88
|
|
C --
|
|
C --MOVREA moves real data.
|
|
C --
|
|
C --Parameters:
|
|
C -- NMOV - IN - the number of reals to move
|
|
C -- RFROM - IN - the reals to move
|
|
C -- RTO - OUT - the array to move to
|
|
|
|
REAL RFROM(*), RTO(*)
|
|
|
|
DO 100 I = 1, NMOV
|
|
RTO(I) = RFROM(I)
|
|
100 CONTINUE
|
|
|
|
RETURN
|
|
END
|
|
|