Skip to contents

time derivate of FunctionObejct

Usage

# S4 method for Function,missing,missing
dt(x, df, ncp)

Arguments

x

a Function.

df

missing.

ncp

missing.

Value

A R6 class representing the time derivative of a Function.

Examples

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