The graphical output will differ according to the option used.
plotF(x, choice = "Fshape", nround = 2, pixmap.color = terrain.colors(20))
The F matrix.
A string: either "F", "Fpixmap", "Fshape", or "Fshapepixmap"
An integer. For numerical F matrices only. The number of decimal numbers to display.
For pixmap plots.
Nothing.
#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")
}