Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 xml 中的 mathml 进行 log10 计算,如下所示
<apply><log><cn>x</cn></log></apply>
为此,我得到了预期的结果,但现在尝试使用与 log 相反的 antilog,我不确定必须使用哪个标签,我正在尝试如下
<apply><inverse><log><cn>x</cn></log></inverse></apply>
在这里我没有得到预期的结果,有人知道反对数的确切标签吗
谢谢
以 10 为底的反对数只是 10^x(即 10 的x次方)。正如下面的链接所说,“反对数”表示法仍在使用,但并不经常使用。正常的指数符号对您不起作用有什么原因吗?
http://en.wikipedia.org/wiki/Antilog#Antilogarithms
对数是指数的倒数。
如果a = logb(c),则c = b ^ a(其中^表示取幂,而不是 XOR)。
a = logb(c)
c = b ^ a
^
反对数?你的意思是power?
power
尝试
<msup> <mi>10</mi> <mn>x</mn> </msup>