![]() |
diagPURPOSE
Extracts the diagonal of an interval matrix.
SYNOPSIS
function Iout=diag(I)
DESCRIPTION
Extracts the diagonal of an interval matrix. Interval vector taken from the diagonal of an interval matrix, I. CROSS-REFERENCE INFORMATION
This function calls:
This function is called by:
SOURCE CODE
0001 function Iout=diag(I) 0002 % Extracts the diagonal of an interval matrix. 0003 % 0004 % Interval vector taken from the diagonal of an interval matrix, I. 0005 0006 Iout=Interval(diag(I.lower),diag(I.upper)); |