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