plot.mesh.2.5D {fdaPDE} | R Documentation |
Plot a mesh.2.5D object
Description
Plot the triangulation of a mesh.2.5D
object, generated by create.mesh.2.5D
Usage
## S3 method for class 'mesh.2.5D'
plot(x, ...)
Arguments
x |
A |
... |
Arguments representing graphical options to be passed to par. |
Value
No return value
Examples
library(fdaPDE)
## Upload the hub2.5D the data
data(hub2.5D)
hub2.5D.nodes = hub2.5D$hub2.5D.nodes
hub2.5D.triangles = hub2.5D$hub2.5D.triangles
## Create mesh
mesh = create.mesh.2.5D(nodes = hub2.5D.nodes, triangles = hub2.5D.triangles)
plot(mesh)
[Package fdaPDE version 1.1-19 Index]