bvp: Boundary value problems

Description Usage Arguments Details Value Examples

Description

solve boundary value problems for ordinary differential equations

Usage

1
2
3

Arguments

x

proposed initial x-value

Details

The euler method implements the Euler method for solving differential equations. The codemidptivp method solves initial value problems using the second-order Runge-Kutta method. The rungekutta4 method is the fourth-order Runge-Kutta method.

Value

a data frame of x and y values

Examples

1
2
3
4
5
6
7
bvpexample(-2)
bvpexample(-1)
bvpexample(0)
bvpexample(1)
bvpexample(2)
## (bvp.b <- bisection(bvpexample, 0, 1))
## (bvp.s <- secant(bvpexample, 0))

cmna documentation built on July 14, 2021, 5:11 p.m.