四个参数的方程该如何求解?
在MATLAB下该怎么编程。用什么函数。麻烦给个例子啊。。多谢大家! 四个未知数,需要四个方程吧? k=1、2、3、4时各有一个方程的。。!!! 非线性代数方程组,用NEWTON-RAPSON迭代方法 能不能给个求解思路啊?
主要是系数和变量不能分离开。。不知道怎么迭代! 麻烦哪位大侠给个非线性代数方程组的例子啊。。。!!?
回复 6楼 的帖子
在matlab的help中找fsolve,你会发现有一个例子在:Example 1. This example finds a zero of the system of two equations and two unknownsThus we want to solve the following system for xstarting at x0 = [-5 -5]. First, write an M-file that computes F, the values of the equations at x.
function F = myfun(x)
F = [2*x(1) - x(2) - exp(-x(1));
-x(1) + 2*x(2) - exp(-x(2))];
Next, call an optimization routine.
x0 = [-5; -5]; % Make a starting guess at the solution
options=optimset('Display','iter'); % Option to display output
= fsolve(@myfun,x0,options)% Call optimizer
页:
[1]