You are here: Symbol Reference > MtxVecTee Namespace > Functions > MtxVecTee.DrawIt Function
MtxVec VCL
ContentsIndex
PreviousUpNext
MtxVecTee.DrawIt Function

Automatically creates modal form with TChart and Series.

Pascal
procedure DrawIt(A: TVec; Caption: string = ''; PixelDownSample: boolean = false); overload;

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).

Uses ...MtxExpr, MtxVecTee; ... var A: Vector; begin A := Sin(Ramp(300,2*PI*5/300)); DrawIt(A,'Showing vector values'); end;

 

#include "MtxExpr.hpp" #include "MtxVecTee.hpp" ... sVector A; A = Sin(Ramp(300,2*PI*5/300)); DrawIt(A,"Showing vector values",false); ..
Examples on GitHub
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!