VRfCopy


Routine

void VRfCopy (const float x[], float y[], int N)

Purpose

Copy an array of floats

Description

This routine copys the elements from one float array to another,
  y[i] = x[i],  0 <= i < N.
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.

Parameters

-> const float x[]
Array of floats (N elements)
<- float y[]
Output array of floats (N elements)
-> int N
Number of elements in each array

Author / revision

P. Kabal / Revision 1.6 2003/05/09

See Also

VRfShift, VRfSet


Main Index libtsp