void vequ_c ( ConstSpiceDouble vin[3],
SpiceDouble vout[3] )
Make one double precision 3-dimensional vector equal to
another.
None.
ASSIGNMENT, VECTOR
VARIABLE I/O DESCRIPTION
-------- --- --------------------------------------------------
vin I 3-dimensional double precision vector.
vout O 3-dimensional double precision vector set equal
to vin.
vin This may be ANY 3-dimensional double precision vector.
vout This 3-dimensional double precision vector is set equal
to vin.
None.
Error free.
None.
vequ_c simply sets each component of vout in turn equal to vin. No
error checking is performed because none is needed.
Let state be a state vector. The angular momentum vector is
determined by the cross product of the position vector and the
velocity vector.
vequ_c ( state[0], R );
vequ_c ( state[3], V );
vcrss_c ( R, V, H );
None.
None.
W.M. Owen (JPL)
-CSPICE Version 1.1.0, 22-OCT-1998 (NJB)
Made input vector const. Removed #include of SpiceZfc.h.
-CSPICE Version 1.0.0, 08-FEB-1998 (EDW)
assign a 3-dimensional vector to another
Link to routine vequ_c source file vequ_c.c
|