Central point of a continuous space.
Returns the central point of the continuous space CS.
CROSS-REFERENCE INFORMATION
This function calls:
This function is called by:
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