在x点获得数学函数的解

时间:2017-07-30 23:12:55

标签: r

我想获得特定x的函数解决方案 e.g。

f <- expression {x^2}

现在我正在寻找例如

的y
xn <- 2

那么我有什么选择来获得我期望的4?

2 个答案:

答案 0 :(得分:2)

我怀疑这就是你要找的东西:

f <- function(x) {
  x^2
}
f(2)
4
f(-2)
4

答案 1 :(得分:1)

函数的结构由:

给出
MyFunction <- function_name(arg1, arg2, ... )      ##any number of arguments that you want
{ 
      statements              ##the expression you want to write
      return(object)          ##the result of your expression
}

看起来你想获得x数的平方。

然后:

f <- function(x){
x^2
return(x)
}