Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

 
Table of Contents

Text XY in Virtual Matrix

...

(ORG-8178)

Sample OPJ to download to try: Virtual Matrix with Text Labels.opj

...

2. In the plotvm dialog, accept the default setting, that is, Y Values in 1st row in selection, and X Values in 1st column in selection. Click OK button to plot the graph

Subrange as Data Range

ORG-8285

range.sub(name/index) to get a subrange from a data range by either specifying a name or index.

Code Block
//For example, with a virtual matrix named as ztitle, you could use subrange to return a dataset for Y values as:
ztitle.sub(y);//by name
ztitle.sub(1); //by index
ztitle.sub(y)[3]=;
ztitle.sub(y)[3]$=;//return 3rd value in this dataset

Improve the speed of plotting virtual matrix

ORG-8342