0

Hello I have downloaded the MathML.dll. I am building the mathematical tool in c# window application. I want the functionality like if user inputs as:

 sin theta / cos theta = tan theta 

then that should appear:

sin 0   
----- = tan 0  (here 0 = theta)
cos 0  

on win form.I want to use MathML.dll. but not found any such example. please guide. what steps i have to follow?

4

1 回答 1

0

我不熟悉 MathML 程序集。你是从哪里弄来的?

编辑

似乎要做你想做的事,你必须习惯于手动解析字符串。特别是,您可能想看看实现Shunting-Yard Algorithm。我快速搜索了将数学字符串解析为 MathML 的任何现有实现,但没有任何运气

于 2011-02-15T06:18:42.007 回答