Learn R Programming

fmesher (version 0.3.0)

fmesher-print: Print objects

Description

Print objects

Usage

# S3 method for fm_segm
print(x, ..., digits = NULL, verbose = TRUE, newline = TRUE)

# S3 method for fm_segm_list print(x, ..., digits = NULL, verbose = FALSE, newline = TRUE)

# S3 method for fm_list print(x, ..., digits = NULL, verbose = FALSE, newline = TRUE)

# S3 method for fm_mesh_2d print(x, ..., digits = NULL, verbose = FALSE)

# S3 method for fm_mesh_3d print(x, ..., digits = NULL, verbose = FALSE)

# S3 method for fm_mesh_1d print(x, ..., digits = NULL, verbose = FALSE)

# S3 method for fm_bbox print(x, ..., digits = NULL, verbose = TRUE, newline = TRUE)

# S3 method for fm_tensor print(x, ..., digits = NULL, verbose = FALSE)

# S3 method for fm_lattice_2d print(x, ..., digits = NULL, verbose = FALSE)

# S3 method for fm_lattice_Nd print(x, ..., digits = NULL, verbose = FALSE)

# S3 method for fm_crs print(x, ...)

# S3 method for fm_CRS print(x, ...)

Value

The input object x

Arguments

x

an object used to select a method.

...

further arguments passed to or from other methods.

digits

a positive integer indicating how many significant digits are to be used for numeric and complex x. The default, NULL, uses getOption("digits").

verbose

logical

newline

logical; if TRUE (default), end the printing with \n

Examples

Run this code
fm_bbox(matrix(1:6, 3, 2))
print(fm_bbox(matrix(1:6, 3, 2)), verbose = FALSE)

print(fmexample$mesh)
print(fmexample$boundary_fm)

print(fm_mesh_1d(c(1, 2, 3, 5, 7), degree = 2))

Run the code above in your browser using DataLab