📄 starttp43.m
字号:
function [X0, LB, UB, Teq, Tineq, Maxiter,epsrel,epsabs,epscon] = StartTP43(maxit)
%Call: [X0, LB, UB, Teq, Tineq, Maxiter,epsrel,epsabs,epscon] = StartTP43(maxit)
%Set initial values for TP43-problem
%
Maxiter = maxit;
Teq = 0;
Tineq = 3;
LB = -Inf*ones(4,1);
UB = Inf*ones(4,1);
X0 = [0 0 0 0];
epsrel=1e-4;
epsabs=1e-8;
epscon=1e-8;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -