Use print on a rsm.design Object

DESCRIPTION:
Use print on a rsm.design object.

USAGE:
print.rsm.design(x, scale.print = "natural", ...)

REQUIRED ARGUMENTS:
x:
rsm.design object.

OPTIONAL ARGUMENTS:
scale.print:
character string indicating the scale of printing. Factors on a logarithmic scale can be printed using a "natural" or "log" scale. The design can also be printed as "coded" factors: with center points at zero, cube points at 1 and -1.

DETAILS:
This function is a method for the generic function print for class "rsm.design". It can be invoked by calling print for an object of the appropriate class, or directly by calling print.rsm.design regardless of the class of the object.

SEE ALSO:
print.rsm.factor

EXAMPLES:
# compare the following results
rsm.design(3,log=T)
print(rsm.design(3,log=T),scale.print='natural')
print(rsm.design(3,log=T),scale.print='log')
print(rsm.design(3,log=T),scale.print='coded')