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 | |
|
Funktion | Auftragung eines Y-Vektors gegen den Index in ein automatisch erzeugtes cartesisches Koordinatensystem |
|
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 ); |
|
Beschreibung | Ein cartesisches Koordinatensystem wird automatisch gemäß der Größe von Y und den in Y vorkommenden Minimal- und Maximalwerten skaliert und gezeichnet. In dieses werden die einzelnen Elemente von Y gegen ihren die X-Achse bildenden Index aufgetragen. Für eine nähere Beschreibung vergleiche man VF_xyAutoPlot.
Es können beliebige Kombinationen von linearen oder logarithmischen Achsen gewählt werden:
VF_yAutoPlot: | sowohl X-Achse als auch Y-Achse linear. |
VF_yAutoPlot_xlg_ylin: | X-Achse logarithmisch, Y-Achse linear. |
VF_yAutoPlot_xlg_ylg: | sowohl X-Achse als auch Y-Achse logarithmisch. |
VF_yAutoPlot_xlin_ylg: | X-Achse linear, Y-Achse logarithmisch. |
|
|
|
|
|