You are here: Symbol Reference > MtxVecTee Namespace > Functions > MtxVecTee.DrawIt Function
MtxVec VCL
ContentsIndex
Example
Uses ..., MtxVecTee; var y1,y2,y3: TVec; begin // ... y1.LoadFromFile('d:tempdata1.Vec'); y2.LoadFromFile('d:tempdata2.Vec'); y3.LoadFromFile('d:tempdata3.Vec'); DrawIt([y1,y2,y3],['y1 data', 'y2 data', 'y3 data'], "Showing data...",false); end;

 

#include "MtxExpr.hpp" #include "MtxVecTee.hpp" ... sVector y1,y2,y3; // ... y1.LoadFromFile("d:\temp\data1.Vec"); y2.LoadFromFile("d:\temp\data2.Vec"); y3.LoadFromFile("d:\temp\data3.Vec"); DrawIt(OPENARRAY(TVec*,(y1,y2,y3)), OPENARRAY(AnsiString,("y1 data", "y2 data", "y3 data")),"Showing data...",false); ..
Copyright (c) 1999-2025 by Dew Research. All rights reserved.