4.7.2 Changing the accuracy to which numbers are displayedBy default, when numbers are displayed, they are printed accurate to eight significant figures, although fewer figures may actually be displayed if the final digits are zeros or nines. This is generally a helpful convention: Pyxplot’s internal arithmetic is generally accurate to around 16 significant figures, and so it is quite conceivable that a calculation which is supposed to return, say, However, there may also be cases where more accuracy is desirable, in which case, the number of significant figures to which output is displayed can be set using the command n = 12 set numerics sigfig n where n can be any number in the range 1-30. It should be noted that the number supplied is the minimum number of significant figures to which numbers are displayed; on occasion an extra figure may be displayed. Alternatively, the string substitution operator, described in Section 6.2.1 may be used to specify how a number should be displayed on a one-by-one basis, as in the examples: pyxplot> print "%d" %(pi) # Print the integer part of pi
|