just a comment in passing, for the record,

it appears that the numpoints plot option can be used this way:

numpoints=round(1e+4)

but not in the simpler form:

numpoints=1e+4

that's because 1e+4 is "1000." with a dot while round(1e+4) is "1000" with no dot.

There probably are good reasons why 1e+4 is not treated as a natural number, but I haven't investigated them.


Please Wait...