| Syntax C/C++ | #include <VFmath.h>
int VF_ln( fVector Y, fVector X, ui size );
int VFx_ln( fVector Y, fVector X, ui size, float A, float B, float C );
int VPF_lntoC( cfVector Y, pfVector X, ui size ); |
| C++ VecObj | #include <OptiVec.h>
int vector<T>::ln( const vector<T>& X );
int vector<T>::x_ln( const vector<T>& X, const T& A, const T& B, const T& C );
int vector<complex<T>>::lntoC( const vector<polar<T>>& X ); |
| Pascal/Delphi | uses VFmath;
function VF_ln( Y, X:fVector; size:UIntSize ): IntBool;
function VFx_ln( Y, X:fVector; size:UIntSize; A, B, C:Single ): IntBool;
function VPF_lntoC( Y:cfVector; X:pfVector; size:UIntSize ): IntBool; |
|