| VF_yAutoPlot | VD_yAutoPlot | VE_yAutoPlot |
| VI_yAutoPlot | VBI_yAutoPlot | VSI_yAutoPlot |
| VLI_yAutoPlot | VQI_yAutoPlot |
| VU_yAutoPlot | VUB_yAutoPlot | VUS_yAutoPlot |
| VUL_yAutoPlot | VUQ_yAutoPlot | VUI_yAutoPlot |
| | ..._yAutoPlot_xlg_ylin | |
| | ..._yAutoPlot_xlg_ylg | |
| | ..._yAutoPlot_xlin_ylg | |
|
| Function | Draws a Cartesian coordinate system and plots each element of a Y-vector against its index. |
|
| Syntax C/C++ | #include <Vgraph.h>.
void VF_yAutoPlot( fVector Y, ui size, unsigned form, COLORREF color );
void VF_yAutoPlot_xlg_ylin( fVector Y, ui size, unsigned form, COLORREF color );
void VF_yAutoPlot_xlg_ylg( fVector Y, ui size, unsigned form, COLORREF color );
void VF_yAutoPlot_xlin_ylg( fVector Y, ui size, unsigned form, COLORREF color ); |
| C++ VecObj | #include <OptiVec.h>
void vector<T>::yAutoPlot( unsigned form, COLORREF color );
void vector<T>::yAutoPlot_xlg_ylin( unsigned form, COLORREF color );
void vector<T>::yAutoPlot_xlg_ylg( unsigned form, COLORREF color );
void vector<T>::yAutoPlot_xlin_ylg( unsigned form, COLORREF color ); |
| Pascal/Delphi | uses Vgraph;
procedure VF_yAutoPlot( Y:fVector; size:UIntSize; form:UInt; color:COLORREF );
procedure VF_yAutoPlot_xlg_ylin( Y:fVector; size:UIntSize; form:UInt; color:COLORREF );
procedure VF_yAutoPlot_xlg_ylg( Y:fVector; size:UIntSize; form:UInt; color:COLORREF );
procedure VF_yAutoPlot_xlin_ylg( Y:fVector; size:UIntSize; form:UInt; color:COLORREF ); |
|
| Description | A Cartesian coordinate system is automatically scaled and drawn. Each element of the vector Y is plotted against its index (forming the X axis) into this coordinate system. For a description of the parameters form and color, see VF_xyAutoPlot. You can choose any combination of linear and logarithmic axes:
| VF_yAutoPlot: | both X axis and Y axis linear. |
| VF_yAutoPlot_xlg_ylin: | X axis logarithmic, Y axis linear. |
| VF_yAutoPlot_xlg_ylg: | both X axis and Y axis logarithmic. |
| VF_yAutoPlot_xlin_ylg: | X axis linear, Y axis logarithmic. |
The plotting routines have to be initialized by V_initPlot prior to calling VF_yAutoPlot. |
|
|
|
|