我需要为 librebasic 宏代码中的一些值提供动力。我们有 func POWER(A; B) 但它的语法是“cell-formula”
但我需要像“pow”这样的原生基本功能。
我试过 SQL 函数
POWER(X,Y)
Returns the value of X raised to the power of Y.
在代码中
rs1(i) = 1/(1+POWER(e, (x1)*(-1)))
但它显示子程序未确定的错误。
我需要为 librebasic 宏代码中的一些值提供动力。我们有 func POWER(A; B) 但它的语法是“cell-formula”
但我需要像“pow”这样的原生基本功能。
我试过 SQL 函数
POWER(X,Y)
Returns the value of X raised to the power of Y.
在代码中
rs1(i) = 1/(1+POWER(e, (x1)*(-1)))
但它显示子程序未确定的错误。