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

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

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

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

Uses ...MtxExpr, MtxVecTee; var x,y: Vector; begin x.LoadFromFile('d:tempx_data.Vec'); y.LoadFromFile('d:tempy_data.Vec'); DrawIt(x, y, "Showing y=y(x)", True); end;

 

#include "MtxExpr.hpp" #include "MtxVecTee.hpp" ... sVector x,y; x.LoadFromFile("d:\temp\x_data.Vec"); y.LoadFromFile("d:\temp\y_data.Vec"); DrawIt(x, y, "Showing y=y(x)", True); ..
Examples on GitHub
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!