uniroot()
R语言中的函数用于计算方程的根,并以区间的下限和上限作为参数传递。
用法: uniroot(fun, interval, lower, upper)
参数:
fun:方程的函数
interval:根的上下范围
lower:区间的下端点
upper:区间的上端点
范例1:
# R program to calculate root of an equation
# Function with equation
fun <- function(x) {2 * x ^ 2 - 4 * x -10}
# Calling uniroot() function
uniroot(fun, lower = 0, upper = 4)
输出:
$root [1] 3.449485 $f.root [1] -4.310493e-05 $iter [1] 5 $init.it [1] NA $estim.prec [1] 6.103516e-05
范例2:
# R program to calculate root of an equation
# Function with equation
fun <- function(x) {2 * x ^ 2 - 4 * x -10}
# Calling uniroot() function
uniroot(fun, c(0, 4))$root
uniroot(fun, lower = -4, upper = 0)$root
输出:
[1] 3.449485 [1] -1.44949
相关用法
- R语言 optimize()用法及代码示例
- R语言 sqrt()用法及代码示例
- R语言 charmatch()用法及代码示例
- R语言 solve()用法及代码示例
- R语言 acos()用法及代码示例
- R语言 cos()用法及代码示例
- R语言 cosh()用法及代码示例
- R语言 sin()用法及代码示例
- R语言 sinh()用法及代码示例
- R语言 tanh()用法及代码示例
- R语言 tan()用法及代码示例
- R语言 asin()用法及代码示例
- R语言 acos()用法及代码示例
- R语言 atan()用法及代码示例
- R语言 exp()用法及代码示例
- R语言 factorial()用法及代码示例
- R语言 choose()用法及代码示例
- R语言 cumprod()用法及代码示例
- R语言 colSums()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Calculate the Root of a Equation within an interval in R Programming – uniroot() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。