sup.m
来自「Interval Arithmetic Toolbox for Matlab」· M 代码 · 共 23 行
M
23 行
function supremum = sup(a)
%SUP (interval) computes the supremum of a given interval matrix.
%
%b4m - datatype interval Version 1.02 (c) 26.2.1998 Jens Zemke
%
% DESCRIPTION:
% 'sup' is called
%
% supremum = sup(a)
%
% and computes the supremum of the given
% interval matrix a.
%
% The operations on the datatype interval
% are based on BIAS by Olaf Knueppel.
%
% SEE ALSO:
% interval: inf, abs, iabs.
% double: max.
supremum = bias_sup(a.val);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?