使用 TI-Nspire 数学库中的 eval 函数
using the eval function in the TI-Nspire math library
我想通过Lua了解如何使用TI-Nspire CAS系统。我正在尝试模仿
solve(x+5/3,x)
在 TI-Nspire CX CAS gui 中找到的功能。
我查看了此处找到的 API 文档:https://education.ti.com/download/en/ed-tech/59108CCE54484B76AF68879C217D47B2/7EFB09CED41C4190AFF8F60283B6727A/TI-NspireLuaScriptingAPIReferenceGuide.pdf
我相信我正在寻找的是第 51 页上的 eval
函数,尽管我在网上找不到太多样本。提供的示例不是具体示例。
math.eval(math_expression) --apilevel = 2.0
math.eval(math_expression, [exact]) --apilevel = 1.0
local expr = "f1("..mx")"
return math.eval(expr)
我试过了
require "math"
local answer
answer = math.eval("f1(x+3/4,x)")
answer = math.eval(x+3/4,x)
answer = math.eval("5+9")
我一直收到错误 "cannot execute during initialization."
1) 错误如何修复
2) 可以给我一些使用函数的具体例子吗
来自TI-Nspire Lua Scripting API Reference Manual 12.1 math.eval:
Warning
math.eval is not available during script initialization
为避免此错误,请勿在初始化脚本之前调用该函数。
这有效!
function on.paint(gc)
local var1
var1 = math.eval("nsolve(x+4=8,x)")
gc:drawString(var1, 2, 20)
end
我想通过Lua了解如何使用TI-Nspire CAS系统。我正在尝试模仿
solve(x+5/3,x)
在 TI-Nspire CX CAS gui 中找到的功能。
我查看了此处找到的 API 文档:https://education.ti.com/download/en/ed-tech/59108CCE54484B76AF68879C217D47B2/7EFB09CED41C4190AFF8F60283B6727A/TI-NspireLuaScriptingAPIReferenceGuide.pdf
我相信我正在寻找的是第 51 页上的 eval
函数,尽管我在网上找不到太多样本。提供的示例不是具体示例。
math.eval(math_expression) --apilevel = 2.0
math.eval(math_expression, [exact]) --apilevel = 1.0
local expr = "f1("..mx")"
return math.eval(expr)
我试过了
require "math"
local answer
answer = math.eval("f1(x+3/4,x)")
answer = math.eval(x+3/4,x)
answer = math.eval("5+9")
我一直收到错误 "cannot execute during initialization."
1) 错误如何修复
2) 可以给我一些使用函数的具体例子吗
来自TI-Nspire Lua Scripting API Reference Manual 12.1 math.eval:
Warning
math.eval is not available during script initialization
为避免此错误,请勿在初始化脚本之前调用该函数。
这有效!
function on.paint(gc)
local var1
var1 = math.eval("nsolve(x+4=8,x)")
gc:drawString(var1, 2, 20)
end