Yes, wonderful. Just getting my head around the commands for what to draw into the image…
Related to this, I tried some more things with gentable, and I’m puzzled by something here.
At first I thought that some arguments did not work, e,g, ampRange(). Then I discovered that it does work, but that it depends on the order I type them in.
For example, here it does not work
gentable bounds( 5, 10, 390,200), channel(“pvsplot”), tableNumber(1), tableGridColour(100,100,100,50), tableColour(0,0,200,200), outlineThickness(1), sampleRange(0, 64), ampRange(0,1,-1)
But it works here:
gentable bounds( 5, 10, 390,200), channel(“pvsplot”), tableNumber(1), ampRange(0,1,-1), tableGridColour(100,100,100,50), tableColour(0,0,200,200), outlineThickness(1), sampleRange(0, 64)