VF_xyDataPlot | VD_xyDataPlot | VE_xyDataPlot |
VI_xyDataPlot | VBI_xyDataPlot | VSI_xyDataPlot |
VLI_xyDataPlot | VQI_xyDataPlot |
VU_xyDataPlot | VUB_xyDataPlot | VUS_xyDataPlot |
VUL_xyDataPlot | VUQ_xyDataPlot | VUI_xyDataPlot |
|
Function | X-Y-plot into an existing Cartesian coordinate system. |
|
Syntax C/C++ | #include <Vgraph.h>
void VF_xyDataPlot( fVector X, fVector Y, ui size, unsigned form, COLORREF color ); |
C++ VecObj | #include <OptiVec.h>
void vector<T>::xyDataPlot( const vector<T>& X, unsigned form, COLORREF color ); |
Pascal/Delphi | uses Vgraph;
procedure VF_xyDataPlot( X, Y:fVector; size:UIntSize; form:UInt; color:COLORREF ); |
|
Description | The vector Y is plotted against the vector X into a Cartesian coordinate system drawn by a prior call to one of the AutoPlot functions or to V_drawAxes. For a description of the parameters form and color, see VF_xyAutoPlot.
The VecObj version of this function has to be called as a member function of Y (rather than of X). |
|
|
|
|