Alter()

Sets various defaults for the subsequent Display(), Plot() and Multiplot() commands

ALTER/STATUS   Reports the values of all settings.
ALTER/BINNING p1=Integer Sets bin grouping for plotting
ALTER/DEVICE p1=String Change interactive device
ALTER/FONT p1=Font Set text font
ALTER/HARDCOPY p1=String Hardcopy device
ALTER/LINECOLOUR p1=Colour Axes/box colour
ALTER/LINETYPE p1=LineStyle Line style for line plots
ALTER/LINEWIDTH p1=Real Overall line thickness
ALTER/MARKERS p1=Marker Sets the marker plot symbol
ALTER/MARKERSIZE p1=Real Size of markers on a Display()
ALTER/PLOT xmin=Real xmax=Real ymin=Real ymax=Real Change plot size
ALTER/PLOTCOLOUR p1=Colour Data plot colour
ALTER/SIZE p1=Real X window display size (scale factor)
ALTER/TEXTHEIGHT p1=Real Text height
ALTER/TEXTCOLOUR p1=Colour Label/title colour

example:

	# Change the axis colour to blue
	>> Alter/linecolour $BLUE

Note: See also the Toggle() command for changing plot parameters

Alter/Status

Shows the current values of any settings which may be changed using the Alter() command.

Alter/Binning

This command alters the bin grouping value used by the Display() command when displaying a histogram or bin-mode workspace. Note, the effect is simulated for ease of use when the user is plotting a point-mode workspace.

When the bin grouping value is set to a value greater than one, the display command groups the data by averaging the values of n-bin groups starting from the first bin in the histogram. This averaging can be viewed as a rudimentary form of smoothing the data which is done on the fly, each time the display command is used. It is possible to apply the same operation to a standard workspace permanently, see the Groupbins() command for more information.

Parameters:

P1 (Integer)

Number of bins to group together, no grouping occurs if this value is set to 1.

Alter/Device

This command changes the device to which the output of the display command will be sent.

Parameters:

P1 (String)

This is the name of the supported graphics device to which to set the display. Following the Alter/Device command all high level graphics commands will use the selected device.

Alter/Font

This command changes the default font used by the Display() command. This will change the font for all the text used in the display.

Parameters:

P1 (Font)

This is the name of a supported font to which to set the display. After an Alter/Font command all high level graphics commands will use new font..

Alter/Hardcopy

This command changes the default hardcopy device to which the output of display command is sent when a Hardcopy() command is issued.

Parameters:

P1 (String)

This is the name of the supported graphics device to which to set the hardcopy device will save the plot.

Alter/Linecolour

This command changes the default colour the Display() and command uses for drawing the axes and surrounding boxes.

Parameters:

P1 (Colour)

This is a colour variable returned by one of the colour functions or listed as one of the supported colours.

Alter/Linetype

This command changes the default line type the Display() and Plot() commands use for drawing line plots. Useful for separating plots on monochrome terminals.

Parameters:

P1 (LineStyle)

This is a line style listed as one of the supported linestyles.

Alter/Linewidth

This command changes the default line width used by the Display() and Plot() commands use for drawing line plots.

Parameters:

P1 (Real)

This is a real multiplier for the default line plot width of 1 unit. The width of the line may vary on different graphics devices.

Alter/Markers

This command changes the default marker used on a Marker plot.

Parameters:

P1 (Marker)

This is one of the available markers listed as one of the supported markers.

Alter/Markersize

This command changes the default marker size used by the Display() and Plot() commands use for drawing marker plots.

Parameters:

P1 (Real)

This is a real multiplier for the default marker size of 1 unit. The size of the marker may vary on different graphics devices.

Alter/Plot

This command changes the area of the display device which will be taken up by a Display() or Plot() command. The limits of the box are specified in device co-ordinates in the range 0.0-1.0 where the the values (0.0, 0.0) and (1.0, 1.0) represent the largest square available on the plotting device. It may be possible to draw slightly outside this area for devices with rectangular aspect ratios.

Parameters:

Xmin (Real), Xmax=(Real), Ymin=(Real), Ymax=(Real)

Normalised device co-ordinate values in the range 0.0 to 1.0. Xmin < Xmax, Ymin < Ymax.

Alter/Plotcolour

This command changes the default colour the Display() command uses for drawing the data plot (line, histogram or markers or errors).

Parameters:

P1 (Colour)

This is a colour variable returned by one of the colour functions or listed as one of the supported colours.

Alter/Size

Changes the size of the display device by a scaling factor. 1.0 is the default scaling factor.

Parameters:

P1 (Real)

Multiplier for the display device size.

Alter/Textheight

This command changes the default text height used by the Display() and Plot() commands.

Parameters:

P1 (Real)

This specifies the text height as a multiplier of 100th of the height of the display. The default text height is 3.0 or 3 hundredths of the display height.

Alter/Textcolour

This command changes the default colour the Display() command uses for drawing text.

Parameters:

P1 (Colour)

This is a colour variable returned by one of the colour functions or listed as one of the supported colours.