⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lagrpen.m

📁 various matlab programs to slove various problems
💻 M
字号:
function [x,vinc,nit]=lagrpen(x0,alpha0,beta,f,h,toll)x = x0; [r,c]=size(h); vinc = 0;for i=1:r,    vinc = max(vinc,eval(h(i,1:c)));   endnorm2h=['(',h(1,1:c),')^2'];for i=2:r,    norm2h=[norm2h,'+(',h(i,1:c),')^2'];    endalpha = alpha0; options(1)=0; options(2)=toll*0.1; nit = 0;while vinc > toll  g=[f,'+0.5*',num2str(alpha,16),'*',norm2h];  [x]=fmins(g,x,options);  vinc=0; nit = nit + 1;  for i=1:r,  vinc = max(vinc,eval(h(i,1:c)));  end  alpha=alpha*beta;endreturn

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -