![]() |
uminusPURPOSE
Changes the sign of an interval matrix.
SYNOPSIS
function Iout=uminus(I)
DESCRIPTION
Changes the sign of an interval matrix. Negates the element of the given interval matrix, I. CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
0001 function Iout=uminus(I) 0002 % Changes the sign of an interval matrix. 0003 % 0004 % Negates the element of the given interval matrix, I. 0005 0006 Iout.lower=-I.upper; 0007 Iout.upper=-I.lower; 0008 Iout.r=I.r; 0009 Iout.c=I.c; 0010 Iout=class(Iout,'Interval'); 0011 0012 |