Skip to contents

Create Function object

Usage

Function(FunctionSpace)

Arguments

FunctionSpace

a FunctionSpace object created by FunctionSpace:

Value

A R6 object representing a Function belonging to the FunctionSpace passed as parameter.

Examples

if (FALSE) {
library(femR)
data("unit_square")
mesh <- Mesh(unit_square)
Vh <- FunctionSpace(mesh)
f <- Function(Vh)
}