You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Dew.Math.Tee Namespace > Classes > MtxVecTee Class > MtxVecTee Methods > DrawIt Method > MtxVecTee.DrawIt Method (TVec, TVec, string, bool)
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
MtxVecTee.DrawIt Method (TVec, TVec, string, bool)

Shows form with tChart and FastLine series showing Y=Y(X).

Syntax
C#
Visual Basic
public static void DrawIt(TVec x, TVec y, string caption, bool pixeldownsample);
Parameters 
Description 
TVec x 
Source x values vector. 
TVec y 
Source y values vector. 
string caption 
Form text. 
bool pixeldownsample 
If true, DrawIt will automatically use PixelDownSample method for series to reduce the number of points displayed (much faster display). 

Load data, display it.

using Dew.Math; using Dew.Math.Tee; Vector x = new Vector(0); Vector y = new Vector(0); x.LoadFromFile("xdata.vec"); y.LoadFromFile("xdata.vec"); MtxVecTee.DrawIt(x,y,"y=y(x)",false);
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!