我一直在尝试将R接口(interface)rSymPy连接到CAS SymPy,它工作得很好。但是,我找不到使用某些较复杂功能的正确语法,例如找到泰勒级数。
例如,我尝试了以下方法:

library(rSymPy)
sympy("var('p')")
#
##### Cannot make this work ???
#
sympy("from sympy.mpmath import *")
xt <- sympy("p=taylor(exp, 0, 10)")

但这会引发错误:
Error in .jcall("RJavaTools", "Ljava/lang/Object;", "invokeMethod", cl,  :
  SyntaxError: ("no viable alternative at input '='", ('<string>', 1, 8, '__Rsympy= from sympy.mpmath import *\n'))

任何帮助表示赞赏。

最佳答案

似乎没有明确的泰勒级数可用,但是级数函数可用。以下代码有效:

library(rSymPy)
sympy("var('p')")
sympy("var('x')") # or sympy("x = Symbol('x', real=True)")
#
xt <- sympy("p=series(exp(x), x, 0, 10)") # expand about 0 to 10th order

给出答案:
[1] "1 + x + x**2/2 + x**3/6 + x**4/24 + x**5/120 + x**6/720 + x**7/5040 + x**8/40320 + x**9/362880 + O(x**10)"

我们可以通过将代码修改为以下内容来检查此答案:
library(rSymPy)
sympy("var('p')")
sympy("var('x')") # or sympy("x = Symbol('x', real=True)")
#
xt <- sympy("p=series(exp(x), x, 0, 10)") # expand about 0 to 10th order
# Remove order information
xt0 <- sympy("p.removeO()")
# Test results
x <- 1/3
T1 <- eval(parse(text=xt0)) # Evaluate the result, xt0
T2 <- exp(x)                # The correct value
print(T1-T2)                # Print the error

最后,来自系列扩展的错误是:
[1] -4.811929e-12

我希望这对希望使用R包rSymPy的其他人有所帮助

关于r - 使用rSymPy计算泰勒级数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25385302/

10-10 05:21