OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
copyr8.F File Reference
#include "implicit_f.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine copyr8 (r8_l, r8, n)

Function/Subroutine Documentation

◆ copyr8()

subroutine copyr8 ( double precision, dimension(n) r8_l,
double precision, dimension(n) r8,
integer n )

Definition at line 29 of file copyr8.F.

30C-----------------------------------------------
31C I m p l i c i t T y p e s
32C-----------------------------------------------
33#include "implicit_f.inc"
34C-----------------------------------------------
35C D u m m y A r g u m e n t s
36C-----------------------------------------------
37 INTEGER N
38 DOUBLE PRECISION R8_L(N),R8(N)
39C-----------------------------------------------
40C L o c a l V a r i a b l e s
41C-----------------------------------------------
42 INTEGER I
43 DO i = 1, n
44 r8_l(i) = r8(i)
45 ENDDO
46 RETURN