rSPDE.fem1d {rSPDE} | R Documentation |
Finite element calculations for problems on R
Description
This function computes mass and stiffness matrices for a FEM approximation on R, assuming Neumann boundary conditions. These matrices are needed when discretizing the operators in rational approximations.
Usage
rSPDE.fem1d(x)
Arguments
x |
Locations of the nodes in the FEM approximation. |
Value
The function returns a list with the following elements
G |
The stiffness matrix. |
C |
The mass matrix. |
Author(s)
David Bolin davidbolin@gmail.com
See Also
Examples
# create mass and stiffness matrices for a FEM discretization on [0,1]
x <- seq(from = 0, to = 1, length.out = 101)
fem <- rSPDE.fem1d(x)
[Package rSPDE version 2.3.3 Index]