📄 uminus.m
字号:
function negative = uminus(a)
%UMINUS (interval) overloades uminus for interval matrices, -a.
%
%b4m - datatype interval Version 1.02 (c) 26.2.1998 Jens Zemke
%
% DESCRIPTION:
% 'uminus' is called
%
% negative = - a
%
% or
%
% negative = uminus(a)
%
% and computes the unary minus -a of a.
%
% The operations on the datatype interval
% are based on BIAS by Olaf Knueppel.
%
% SEE ALSO:
% interval: minus, uplus.
% double: uminus.
negative.val = bias_neg(a.val);
negative = class(negative, 'interval');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -