More Tool Boards

 Function boards Data boards Tool boards

Chart.tbd

v2.1

Simple charting tool.

Methods
int SetData(dt) SetData sets the X/Y vectors of the chart. SetData(NULL) will clear the series
int Add(X,Y) Add new point to the chart series. 
int SetSource(src) SetData sets the name of the source (data-board) for the X/Y vectors of the chart.
int UpdateChr() Update chart series using the last set source.
matrix dbl GetData() Returns the point(X/Y) values in the chart series.
double Spline(X) Return interpolated (cubic spline) Y value of X coord.;

  

Chr3D.tbd

v2.1

3D charting tool (irregular X/Z grid).

Methods
int SetData(dt) SetData sets the X/Y/Z vectors of the chart. SetData(NULL) will clear the series
int Add(X,Y,Z) Add new point to the chart series. 
int SetSource(src) SetData sets the name of the source (data-board) for the X/Y/Z vectors of the chart.
int UpdateChr() Update chart series using the last set source.
matrix dbl GetData() Returns the point(X/Y/Z) values in the chart series.

  

Surf.tbd

v1.1

Surface charting tool (regular X/Z grid).

Methods
int SetData(dt) SetData sets the X/Y/Z vectors of the chart. SetData(NULL) will clear the series
int Add(X,Y,Z) Add new point to the chart series. 
int SetSource(src) SetData sets the name of the source (data-board) for the X/Y/Z vectors of the chart.
int UpdateChr() Update chart series using the last set source.
matrix dbl GetData() Returns the point(X/Y/Z) values in the chart series.
double Spline(X,Z) Return interpolated (bi-cubic spline) Y value of X,Z coord.;

  

Histo.tbd

v2.0

Simple histogram tool with stats.

Methods
int SetData(dt) SetData sets the values of the data buffer. SetData(NULL) will clear the series
int Add(dt) Add new value to the data buffer. 
int SetSource(src) SetData sets an expression which results to a vector with the values 
int UpdateHst() Update chart series using the last set source.
void SwitchStat(switch) Switches ON / OFF - the statistics panel and calculations.
str Stats(stat) Returns list of all stats or the value of particular stat-item.
matrix dbl GetHisto() Returns the histogram (Bin/Count) from the chart.
vector dbl GetData() Returns the values in the data buffer.

 


Go to Function Boards Go to Data boards Go to Tool Boards