![]() |
CenterPURPOSE
Central point of a continuous space.
SYNOPSIS
function c=center(CS)
DESCRIPTION
Central point of a continuous space. Returns the central point of the continuous space CS. CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
0001 function c=center(CS) 0002 % Central point of a continuous space. 0003 % 0004 % Returns the central point of the continuous space CS. 0005 0006 c=(CS.max-CS.min)/2; 0007 |