![]() |
expPURPOSE
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:
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 |