Learn R Programming

RemixAutoML (version 0.5.4)

Bisection: Bisection

Description

Finds roots for a given interval of values for a given function using bisection method

Algorithms

Usage

Bisection(f = function(x) x^2 - 4 * x + 3, a = 0, b = 2)

Arguments

f

mathematical function

a

lower bound numeric value

b

upper bound numeric value

Examples

Run this code
# NOT RUN {
RemixAutoML::Bisection(f = function(x) x ^ 2 - 4 * x + 3, a = 0, b = 2)
# 1
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab