kangtj 发表于 2008-3-20 12:36

四个参数的方程该如何求解?

在MATLAB下该怎么编程。用什么函数。麻烦给个例子啊。。
多谢大家!

21172485 发表于 2008-3-20 16:08

四个未知数,需要四个方程吧?

kangtj 发表于 2008-3-20 18:14

k=1、2、3、4时各有一个方程的。。!!!

21172485 发表于 2008-3-20 19:57

非线性代数方程组,用NEWTON-RAPSON迭代方法

kangtj 发表于 2008-3-20 21:15

能不能给个求解思路啊?
主要是系数和变量不能分离开。。不知道怎么迭代!

kangtj 发表于 2008-3-21 10:51

麻烦哪位大侠给个非线性代数方程组的例子啊。。。!!?

无水1324 发表于 2008-3-21 10:54

回复 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]
查看完整版本: 四个参数的方程该如何求解?