![]() |
UpperPURPOSE
Upper limit of an interval matrix.
SYNOPSIS
function u=Upper(I)
DESCRIPTION
Upper limit of an interval matrix. Returns the real matrix of upper bounds for an interval matrix, I. CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
0001 function u=Upper(I) 0002 % Upper limit of an interval matrix. 0003 % 0004 % Returns the real matrix of upper bounds for an interval matrix, I. 0005 0006 u=I.upper; |