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.
我想了解像 GeoGebra 这样的 Java 程序如何exp(z^2)从文本框中读取数学表达式,然后对其进行评估。对于熟悉 MatLab 的人:如何在 Java 中实现函数句柄?
exp(z^2)
如果它就像使用 java 评估数学表达式 (INFIX),我会推荐一种简单的方法,首先将表达式转换为 POSTFIX 表示法,然后遵循评估 POSTFIX 的基本算法。
看看这里
堆栈中的最终结果将是您的答案。