举个例子吧:
x=[1:10]';
y=[ 6.7 8.7 9.8 10.8 12.5 15.1 17.9 20.2 21.5 22.4]'
x=[ones(numel(x),1),x]
opts = optimoptions('lsqlin','Algorithm','active-set');
para=lsqlin(x,y,[],[],[1 6],16,[],[],[],opts)
para(1)是常数项,para(2)是一次项,过点(6,16)
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!