![]() |
zerosIntPURPOSE
Iout=zerosInt(varargin)
SYNOPSIS
function Iout=zerosInt(varargin)
DESCRIPTION
Iout=zerosInt(varargin) Generates an interval matrix where all entries are punctual intervals with value 0. The parameters give the size of the the matrix to be generated. This is the interval counterpart of function 'zeros'. See also zeros. CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
0001 function Iout=zerosInt(varargin) 0002 % Iout=zerosInt(varargin) 0003 % Generates an interval matrix where all entries are punctual intervals 0004 % with value 0. The parameters give the size of the the matrix to be 0005 % generated. 0006 % 0007 % This is the interval counterpart of function 'zeros'. 0008 % 0009 % See also zeros. 0010 Iout=Interval(zeros(varargin{1:end})); |