如何解决在 R 中使用 simplify() 方法时出现的错误?
How to solve an error in using simplify() method in R?
这是我第一次尝试使用 R 计算表达式的导数。我尝试了以下代码:
library(Ryacas) # open the Ryacas package.
f <- expression(asin(2*x/(1 + x^2))) # insert the expression.
d <- D(f, 'x') # find the expression's derivative.
print(d) # print the derivative of f.
simple_d <- simplify(d) # make the mathematical expression of the derivative simpler.
print(simple_d) # print the simply expressed derivative of f.
并且我收到了以下有关 simplify()
方法使用的错误消息。
Error in UseMethod("simplify") :
no applicable method for 'simplify' applied to an object of class "call"
对此有什么想法吗?我应该如何在 d
这样的表达式上正确使用 simplify()
方法?
谢谢!
如图所示使用Ryacas0:
library(Ryacas0)
x <- Sym("x")
f <- asin(2*x/(1 + x^2))
d <- deriv(f, x)
d
Simplify(d)
或者像这样的 Ryacas:
library(Ryacas)
x <- ysym("x")
f <- asin(2*x/(1 + x^2))
d <- deriv(f, x)
d
simplify(d)
这是我第一次尝试使用 R 计算表达式的导数。我尝试了以下代码:
library(Ryacas) # open the Ryacas package.
f <- expression(asin(2*x/(1 + x^2))) # insert the expression.
d <- D(f, 'x') # find the expression's derivative.
print(d) # print the derivative of f.
simple_d <- simplify(d) # make the mathematical expression of the derivative simpler.
print(simple_d) # print the simply expressed derivative of f.
并且我收到了以下有关 simplify()
方法使用的错误消息。
Error in UseMethod("simplify") :
no applicable method for 'simplify' applied to an object of class "call"
对此有什么想法吗?我应该如何在 d
这样的表达式上正确使用 simplify()
方法?
谢谢!
如图所示使用Ryacas0:
library(Ryacas0)
x <- Sym("x")
f <- asin(2*x/(1 + x^2))
d <- deriv(f, x)
d
Simplify(d)
或者像这样的 Ryacas:
library(Ryacas)
x <- ysym("x")
f <- asin(2*x/(1 + x^2))
d <- deriv(f, x)
d
simplify(d)