MtxVecTee::DrawIt Function

Overload List

#SignatureDescription
1void DrawIt(TVec *A, System::UnicodeString Caption = "", bool PixelDownSample = false);Automatically creates modal form with TChart and Series.
2void DrawIt(TVec *A, int Width, int height);Shows form with chart and fastline series showing vector values.
3void DrawIt(const DewArray<TVec *> &A, const DewArray<System::UnicodeString> &SeriesCaptions, System::UnicodeString Caption = "", bool PixelDownSample = false);Shows form with chart and array of fastline series - one for each vector in A array of vectors.
4void DrawIt(TMtx *A, System::UnicodeString Caption = "");Shows form with chart and grid series showing matrix values.
5void DrawIt(TVec *X, TVec *Y, System::UnicodeString Caption = "", bool PixelDownSample = false);Shows form with chart and fastline series showing Y=Y(X).

Overload 1: void DrawIt(TVec *A, System::UnicodeString Caption = "", bool PixelDownSample = false);

Automatically creates modal form with TChart and Series.

#NameTypeDescription
1ATVec *
2Caption = ""System::UnicodeString
3PixelDownSample = falsebool
Remarks:

Use DrawValues method to draw values to automatically created series. Shows form with chart and fastline series showing vector values. The Caption parameter defines modal form caption. If parameter PixelDownSample is True, then DrawIt will automatically use PixelDownSample method to reduce the number of points displayed for all series (much faster display).

See Also: MtxVecTee::DrawValues
Declared in Dew::Math::Controls::VCL::Units::MtxVecTee · Dew.Math.Controls.VCL/Units.MtxVecTee.h · C++Builder only

Overload 2: void DrawIt(TVec *A, int Width, int height);

Shows form with chart and fastline series showing vector values.

#NameTypeDescription
1ATVec *
2Widthint
3heightint
Remarks:

Set the modal form ClientWidth and ClientHeight to Width and Height respectively.

See Also: MtxVecTee::DrawValues
Declared in Dew::Math::Controls::VCL::Units::MtxVecTee · Dew.Math.Controls.VCL/Units.MtxVecTee.h · C++Builder only

Overload 3: void DrawIt(const DewArray<TVec *> &A, const DewArray<System::UnicodeString> &SeriesCaptions, System::UnicodeString Caption = "", bool PixelDownSample = false);

Shows form with chart and array of fastline series - one for each vector in A array of vectors.

#NameTypeDescription
1Aconst DewArray<TVec *> &
2SeriesCaptionsconst DewArray<System::UnicodeString> &
3Caption = ""System::UnicodeString
4PixelDownSample = falsebool
Remarks:

Sets series Title(s) to strings in SeriesCaptions. Set form caption to Caption string. If PixelDownSample paramter is True, then DrawIt will automatically use PixelDownSample method for all series to reduce the number of points displayed (much faster display).

Declared in Dew::Math::Controls::VCL::Units::MtxVecTee · Dew.Math.Controls.VCL/Units.MtxVecTee.h · C++Builder only

Overload 4: void DrawIt(TMtx *A, System::UnicodeString Caption = "");

Shows form with chart and grid series showing matrix values.

#NameTypeDescription
1ATMtx *
2Caption = ""System::UnicodeString
Remarks:

The Caption parameter defines modal form caption.

Declared in Dew::Math::Controls::VCL::Units::MtxVecTee · Dew.Math.Controls.VCL/Units.MtxVecTee.h · C++Builder only

Overload 5: void DrawIt(TVec *X, TVec *Y, System::UnicodeString Caption = "", bool PixelDownSample = false);

Shows form with chart and fastline series showing Y=Y(X).

#NameTypeDescription
1XTVec *
2YTVec *
3Caption = ""System::UnicodeString
4PixelDownSample = falsebool
Remarks:

If PixelDownSample paramter is True, then DrawIt will automatically use PixelDownSample method for series to reduce the number of points displayed (much faster display).

Declared in Dew::Math::Controls::VCL::Units::MtxVecTee · Dew.Math.Controls.VCL/Units.MtxVecTee.h · C++Builder only