![]() |
maxPURPOSE
Upper bound of a CSpace
SYNOPSIS
function m=max(S)
DESCRIPTION
Upper bound of a CSpace Returns the upper bounds of a continuous space for all dimensions as a column vector. CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
0001 function m=max(S) 0002 % Upper bound of a CSpace 0003 % 0004 % Returns the upper bounds of a continuous space for all dimensions as a 0005 % column vector. 0006 0007 m=S.max; |