![]() |
DiameterPURPOSE
Diameter of the intervals in an interval matrix.
SYNOPSIS
function D=Diameter(I)
DESCRIPTION
Diameter of the intervals in an interval matrix. Diameter of an interval matrix, I. It returns a matrix, D, with the size of the interval at the corresponding position of the input matrix. CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
0001 function D=Diameter(I) 0002 % Diameter of the intervals in an interval matrix. 0003 % 0004 % Diameter of an interval matrix, I. 0005 % It returns a matrix, D, with the size of the interval at the corresponding 0006 % position of the input matrix. 0007 0008 D=I.upper-I.lower; |