expr and evalexpr for Graph Builder gradient limits
I am trying to set up a script that will generate a Graph Builder with gradient min and max equal to to Quantile values of the Column being plotted. Unfortunately, the expr and evalexpr syntax I am using doesn't work for the matrix in "Scale Values". I need help. dt0 = current data table();
param = "Voltage";
colp = dt0:param;
graph_high = Quantile( 0.975, column(dt0, param) << get as matrix() );
...