⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 abs.m

📁 Interval Arithmetic Toolbox for Matlab
💻 M
字号:
function magnitude = abs(a)

%ABS (interval) computes the magnitude of a given interval matrix.
%
%b4m - datatype interval    Version 1.02    (c) 26.2.1998 Jens Zemke
%
%   DESCRIPTION:
%     'abs' is called
%
%         magnitude = abs(x)
%
%     and computes the elementwise magnitude of
%     the interval matrix x.
%     The magnitude of an interval is defined as
%     mag(x) := max {abs(y) | y in x}.
%
%     The operations on the datatype interval
%     are based on BIAS by Olaf Knueppel.
%
%   SEE ALSO:
%     interval: iabs.
%     double: abs.

magnitude = bias_abs(a.val);

⌨️ 快捷键说明

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