📄 erfcx.m
字号:
function varargout = erfcx(varargin)
%ERFCX (overloaded)
% Author Johan L鰂berg
% $Id: erfcx.m,v 1.5 2007/08/02 18:16:26 joloef Exp $
switch class(varargin{1})
case 'double'
error('Overloaded SDPVAR/ERFCX CALLED WITH DOUBLE. Report error')
case 'sdpvar'
varargout{1} = InstantiateElementWise(mfilename,varargin{:});
case 'char'
operator = struct('convexity','none','monotonicity','decreasing','definiteness','positive','model','callback');
operator.bounds = @bounds;
varargout{1} = [];
varargout{2} = operator;
varargout{3} = varargin{3};
otherwise
error('SDPVAR/ERFCX called with CHAR argument?');
end
function [L,U] = bounds(xL,xU)
L = erfcx(xU);
U = erfcx(xL);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -