![]() |
dimPURPOSE
Dimensionality of a continuous space.
SYNOPSIS
function d=dim(CS)
DESCRIPTION
Dimensionality of a continuous space. Returns the number of dimensions of the continuous space CS. CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
0001 function d=dim(CS) 0002 % Dimensionality of a continuous space. 0003 % 0004 % Returns the number of dimensions of the continuous space CS. 0005 0006 d=CS.dim; |