On Tue, 29 Nov 2011, Ignacio Diaz-Emparanza wrote:
this script works correctly, presenting a window with the graph
<script>
open bjg.gdt
scatters g lg --output=display
</script>
but this does not produce the graph window:
<script>
function void test_graf(series y, series x)
scatters y x --output=display
end function
open bjg.gdt
test_graf(g, lg)
</script>
I think that 'scatters' should work the same as the 'gnuplot' command,
being correct to call it from inside a function, or not?
Yes, I suppose so. Fixed in CVS.
Allin