本文介绍了什么算法解决C#中的任何方程系统?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个多变量的方程系统,如:

f1(x1,x2,x3,...,xn)= 0

f2(x1 ,x2,x3,...,xn)= 0

.....

fn(x1,x2,x3,...,xn)= 0

那里,f1,f2,...,fn是x1,x2,...,xn的函数,它们是参数(方程式的变量)。



我想通过C#解决这个系统,解决它的算法是什么?谢谢。

I have an equation system with multi-variable, as:
f1(x1, x2, x3,..., xn)=0
f2(x1, x2, x3,..., xn)=0
.....
fn(x1, x2, x3,..., xn)=0
There, f1, f2,..., fn are functions with x1, x2,..., xn which are parameters (variables of the equation system).

I want to solve this system by C#, what algorithm to solve it? Thanks.

推荐答案



这篇关于什么算法解决C#中的任何方程系统?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-23 01:21