Feeds
提问
how do i use newton method for the vector optimization
how do i use newton method for the vector optimization minimize the function f(x1,x2,x3)=exp(x1-x2+x3)+exp(2x1-x2+0.1)+exp(-x3-0...
14 years 前 | 0 个回答 | 0
0
个回答提问
Newton's method problem
clear all; close all; a=4; b=3; x=zeros(); x(1)=1; for i=1:1000; f(x(i))=(x(i)-a)^2+b; x(i+1) =x...
14 years 前 | 3 个回答 | 0