![]() |
dimPURPOSE
Dimensionality of a discrete space.
SYNOPSIS
function d=dim(DS)
DESCRIPTION
Dimensionality of a discrete space. Returns the number of dimensions of the discrete space 'DS'. See also DSpace. CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
0001 function d=dim(DS) 0002 % Dimensionality of a discrete space. 0003 % 0004 % Returns the number of dimensions of the discrete space 'DS'. 0005 % 0006 % See also DSpace. 0007 0008 d=DS.max; |