📄 psdiagnose.m
字号:
function psdiagnose(FUN,Iterate,Xin,type,nineqcstr,neqcstr,ncstr,options)
%PSDIAGNOSE prints some diagnostic information about the problem
% private to PFMINLCON, PFMINBND, PFMINUNC.
% Copyright 2004 The MathWorks, Inc.
% $Revision: 1.3.6.2 $ $Date: 2004/03/09 16:15:58 $
properties = optionsList('ps');
defaultOpt = psoptimset;
Output_String = sprintf('\nDiagnostic information.');
Output_String = [Output_String sprintf('\n\tobjective function = %s',value2RHS(FUN))];
%print some information about constraints
if ~isempty(nineqcstr)
Output_String = [Output_String sprintf('\n\t%d Inequality constraints',nineqcstr)];
end
if ~isempty(neqcstr)
Output_String = [Output_String sprintf('\n\t%d Equality constraints',neqcstr)];
end
if ~isempty(ncstr)
Output_String = [Output_String sprintf('\n\t%d Total number of linear constraints\n',ncstr)];
end
Output_String = [Output_String sprintf('\n\tX0 = %s',value2RHS(reshapeinput(Xin,Iterate.x)))];
Output_String = [Output_String sprintf('\n\tf(X0) = %s',value2RHS(Iterate.f))];
Output_String = [Output_String sprintf('\n%s','Modified options:')];
for i = 1:length(properties)
prop = properties{i};
if(~isempty(prop)) % the property list has blank lines, ignore them
value = options.(prop);
if ~isempty(value) && ~isequal(value,defaultOpt.(prop)) % don't generate Output_String for defaults.
Output_String = [Output_String sprintf('\n\toptions.%s = %s',prop,value2RHS(value))];
end
end
end
Output_String = [Output_String sprintf('\nEnd of diagnostic information.')];
fprintf('%s',Output_String)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -