colinmod.m

来自「基于matlab的约束非线性规划算法库」· M 代码 · 共 11 行

M
11
字号
function [c, A] = cOlinMod(x, ctrl, t, u)
%Call: [c A]=ctp25(x,ctrl,t,u)
%Evaluate the constraints and the corresponding
%Jacobian for the problem below at x.
%if ctrl>0 only the Jacobian is computed.
%if ctrl == 0 only c(x) is computed.
%The problem is defined only with lower and upper
%bounds on the variables. No ordinary constraints.
%
    c=[];
    A=[];

⌨️ 快捷键说明

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