1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
<HTML>
<HEAD>
<TITLE>TSP (libtsp/VR) - VRfCopy</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFACD">
<H2>VRfCopy</H2>
<HR>
<H4>Routine</H4>
<DL>
<DT>
void VRfCopy (const float x[], float y[], int N)
</DL>
<H4>Purpose</H4>
<DL>
<DT>
Copy an array of floats
</DL>
<H4>Description</H4>
This routine copys the elements from one float array to another,
<PRE>
y[i] = x[i], 0 <= i < N.
</PRE>
The copying operation procedes from lowest index to highest index. For this
reason, the input and output arrays can only have overlapping storage if the
output array starts at a lower address than the input array.
<H4>Parameters</H4>
<DL>
<DT>
-> const float x[]
<DD>
Array of floats (N elements)
<DT>
<- float y[]
<DD>
Output array of floats (N elements)
<DT>
-> int N
<DD>
Number of elements in each array
</DL>
<H4>Author / revision</H4>
P. Kabal Copyright (C) 1996
/ Revision 1.4 1996/05/06
<H4>See Also</H4>
<A HREF="VRfShift.html">VRfShift</A>,
<A HREF="VRfSet.html">VRfSet</A>
<P>
<HR>
Main Index <A HREF="../libtsp.html">libtsp</A>
</BODY>
</HTML>
|