The graphical output will differ according to the option used.

plotF(x, choice = "Fshape", nround = 2, pixmap.color = terrain.colors(20))

Arguments

x

The F matrix.

choice

A string: either "F", "Fpixmap", "Fshape", or "Fshapepixmap"

nround

An integer. For numerical F matrices only. The number of decimal numbers to display.

pixmap.color

For pixmap plots.

Value

Nothing.

Author

Bertrand Frederic, Myriam Maumy-Bertrand.

Examples


#For numerical/inferred F matrices
plotF(CascadeFinit(4,4),choice="F", nround=1)


if (requireNamespace("pixmap", quietly = TRUE)) {
plotF(CascadeFinit(4,4),choice="Fpixmap")
} else {
plotF(CascadeFinit(4,4),choice="F", nround=1)
}


#For theoritical F matrices
plotF(CascadeFshape(4,4),choice="Fshape")

if (requireNamespace("pixmap", quietly = TRUE)) {
plotF(CascadeFshape(4,4),choice="Fshapepixmap")
} else {
plotF(CascadeFshape(4,4),choice="Fshape")
}