| Syntax C/C++ | #include <VFmath.h>
void VF_acc2V( fVector Y, fVector X1, fVector X2, ui size );
void VD_accVF( dVector Y, fVector X1, fVector X2, ui size ); |
| C++ VecObj | #include <OptiVec.h>
void vector<T>::acc2V( const vector<T>& X1, const vector<T>& X2 );
void vector<double>::acc2VF( const vector<float>& X1, const vector<float>& X2 ); |
| Pascal/Delphi | uses VFmath;
procedure VF_acc2V( Y, X1, X2:fVector; size:UInt );
procedure VD_acc2VF( Y:dVector; X1, X2:fVector; size:UInt ); |
|