Institut de Robòtica i Informàtica Industrial

Offset

PURPOSE ^

Offsets an interval matrix.

SYNOPSIS ^

function Iout=Offset(I,o)

DESCRIPTION ^

 Offsets an interval matrix.

 Offsets an interval matrix, I, by a constant real factor, o.

CROSS-REFERENCE INFORMATION ^

This function calls:
This function is called by:

SOURCE CODE ^

0001 function Iout=Offset(I,o)
0002 % Offsets an interval matrix.
0003 %
0004 % Offsets an interval matrix, I, by a constant real factor, o.
0005 
0006   Iout.lower=I.lower+o;
0007   Iout.upper=I.upper+o;
0008   Iout.r=I.r;
0009   Iout.c=I.c;
0010   Iout=class(Iout,'Interval');


Institut de Robòtica i Informàtica Industrial

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