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

📄 iabs.m

📁 Interval Arithmetic Toolbox for Matlab
💻 M
字号:
function y = iabs(x)

%IABS (interval) computes the interval matrix of the absolute values.
%
%b4m - datatype interval    Version 1.02    (c) 26.2.1998 Jens Zemke
%
%   DESCRIPTION:
%     'iabs' is called
%
%         y = iabs(x)
%
%     and computes the interval of all absolute
%     values, iabs is defined as
%     iabs(x) := {abs(y) | y in x}.
%
%     The operations on the datatype interval
%     are based on BIAS by Olaf Knueppel.
%
%   SEE ALSO:
%     interval: abs.
%     double: abs.

y.val = bias_iabs(x.val);
y = class(y, 'interval');

⌨️ 快捷键说明

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