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

📄 initpt.m

📁 这次上传的绝对是好东西
💻 M
字号:
% initpt % ------ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function [n,m,x]=initpt(nprob,factor) % This function generates the starting points for each problem    % by calling the function initf, which sets m, n and the starting % point xo for the number of problem given to it. If xo is the   % standard starting point, then x will contain factor*xo, except  % if xo is the zero vector and factor is not unity, then all the% components of x will be set to factor.                      %% Created by Madhu Lamba on 10/30/94.                       %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%function [n,m,x] = initpt(nprob,factor)	[n,m,x] = initf(nprob)        x=factor*x%

⌨️ 快捷键说明

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