C#dll来求解简单方程

C#dll来求解简单方程

本文介绍了C#dll来求解简单方程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在寻找一个C#dll来解决简单的方程式。示例..

I am looking for a C# dll to solve simple equation. Example ..

10 = 2 + 3 + x

结果应为x = 5;

Result should be x = 5;

有免费的DLL吗?

推荐答案

我已经用这个数学表达式解析库获得了积极的结果。他提供的文档对于引导是非常有用的。

I've used this Math Expression Parsing library with positive results. The documentation he's provided was very useful to boot.

您的应用程序然后可以容纳图书馆将分析成组成部分的特别方程式。然后,您可以提供所需变量的值,并将其评估结果。

Your app can then accommodate ad hoc equations which the library will parse into component parts. You can then provide the values for required variables and it will evaluate the result.

库包含许多函数(trig,log,factorials,datetime,random等)并可以处理用户定义的功能。

The library includes many function (trig, log, factorials, datetime, random, etc.) and can handle user-defined functions.

这篇关于C#dll来求解简单方程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 01:48