vScopy(_:_:_:)
Copies one vector to another.
Declaration
func vScopy(_ n: Int32, _ x: UnsafePointer<vFloat>, _ y: UnsafeMutablePointer<vFloat>)Parameters
- n:
Number of elements in vectors
xandy; must be a multiple of 4. - x:
A vector array of
floatvalues. - y:
A second vector array of
floatvalues.
Discussion
The elements of x are copied to the corresponding elements of y.