![]() |
CenterPURPOSE
Center of an interval matrix.
SYNOPSIS
function C=Center(I)
DESCRIPTION
Center of an interval matrix. Returns the center of an interval matrix, I. CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
0001 function C=Center(I) 0002 % Center of an interval matrix. 0003 % 0004 % Returns the center of an interval matrix, I. 0005 0006 C=(I.lower+I.upper)/2; |