![]() |
sizePURPOSE
Number of readings stored in the Sensor.
SYNOPSIS
function n=size(S)
DESCRIPTION
Number of readings stored in the Sensor. Return the number of readings stored in Sensor S. CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
0001 function n=size(S) 0002 % Number of readings stored in the Sensor. 0003 % 0004 % Return the number of readings stored in Sensor S. 0005 0006 n=size(S.readings,2); 0007 |