multipol (version 1.0-7)

print.multipol: Print method for multipols

Description

Print methods for multipols

Usage

# S3 method for multipol
print(x, ...)
do_dimnames(a, include.square.brackets = getOption("isb"), varname =
getOption("varname"), xyz = getOption("xyz"))
# S3 method for multipol
as.character(x, ..., xyz = getOption("xyz"), varname =
getOption("varname"))

Arguments

a,x

Multipol or array

include.square.brackets

Boolean with TRUE meaning to, er, include square brackets in the dimnames (eg [x3]^5) and default FALSE meaning to omit them (eg x3^5)

varname

String to describe root variable name (eg varname="y" gives y3^5 or [y3]^5)

xyz

Boolean with default TRUE meaning to represent multipols of dimension \(d\leq 3\) using x, y, and z for the variable names and FALSE meaning to use x1, x2, x3. This option is ignored if \(d>3\); see examples section

...

Further arguments (currently ignored)

Author

Robin K. S. Hankin

Details

Function do_dimnames() is a helper function that takes an array and gives it dimnames appropriate for expression as a multipol. Default behaviour is governed by options isb, varname, and xyz. The function might be useful but it is really intended to be called by print.multipol().

The default behaviour of do_dimnames() and as.character(), and hence the print method for multipols, may be modified by using the options() function. See examples section below.

Examples

Run this code

ones(2,5)

options("showchars" = TRUE)
ones(2,5)

options("xyz" = FALSE)
ones(2,5)

options("varname" = "fig")
ones(2,5)

options("showchars" = FALSE)
ones(2,5)

do_dimnames(matrix(0,2,3),varname="fig",include=TRUE)

Run the code above in your browser using DataCamp Workspace