You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Dew.Math.Tee Namespace > Classes > MtxVecTee Class > MtxVecTee Methods > DrawValues Method > MtxVecTee.DrawValues Method (TVec, TVec, Steema.TeeChart.Styles.Series, bool)
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
MtxVecTee.DrawValues Method (TVec, TVec, Steema.TeeChart.Styles.Series, bool)

Plots Y=Y(X) using apropriate two dimensional series.

Syntax
C#
Visual Basic
public static void DrawValues(TVec X, TVec Y, Steema.TeeChart.Styles.Series series, bool pixeldownsample);
Parameters 
Description 
TVec X 
Stores x values. 
TVec Y 
Stores y values. 
Steema.TeeChart.Styles.Series series 
Series to be used for plotting. Series can be any series with two different ValueList(s). 
bool pixeldownsample 
If true, downsampling is performed prior to plotting. 

Plot y=x*x, where x are integers between -5 and 5.

using Dew.Math; using Dew.Math.Tee; Vector x = new Vector(11); Vector y = new Vector(11); x.Ramp(-5,1); y.Sqr(x); // y=x*x; tChart1.Series.Clear(); tChart1.Series.Add(new Steema.TeeChart.Styles.Line()); MtxVecTee.DrawValues(x,y,tChart[0],false);
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!