Institut de Robòtica i Informàtica Industrial

exp

PURPOSE ^

Element-wise exponential of an interval matrix.

SYNOPSIS ^

function Iout=exp(I)

DESCRIPTION ^

 Element-wise exponential of an interval matrix.

 Element by element exponential of an interval matrix
   
 Todo % check if this is actually used.

CROSS-REFERENCE INFORMATION ^

This function calls:
  • exp Element-wise exponential of an interval matrix.
This function is called by:
  • GaussianValue Evaluates a Gaussian in an array of points
  • exp Element-wise exponential of an interval matrix.

SOURCE CODE ^

0001 function Iout=exp(I)
0002 % Element-wise exponential of an interval matrix.
0003 %
0004 % Element by element exponential of an interval matrix
0005 %
0006 % Todo % check if this is actually used.
0007 
0008   Iout.lower=exp(I.lower);
0009   Iout.upper=exp(I.upper);
0010   Iout.r=I.r;
0011   Iout.c=I.c;
0012   Iout=class(Iout,'Interval');
0013


Institut de Robòtica i Informàtica Industrial

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