Institut de Robòtica i Informàtica Industrial

uminus

PURPOSE ^

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:
This function is called by:

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


Institut de Robòtica i Informàtica Industrial

Generated on Fri 24-Jul-2009 12:32:50 by m2html © 2003