Method | Description | |
---|---|---|
Averages ( this |
Computes the average of each "feature"
|
|
Downsample ( this |
Averages together adjacent bins in values
|
|
HasMotionArtifact ( this |
Implements an artifact-detection algorithm
|
|
NearestPowerOfTwo ( this value, bool canReturnGreaterValues = true ) : int |
Returns the power of two nearest to value
|
|
StandardDevations ( this |
Computes the mean and standard deviation of each feature.
|
|
ZScored ( this |
ZScores each feature based on stddevs and means.
|
public static Averages ( this |
||
data | this |
|
return | IArray |
public static Downsample ( this |
||
values | this |
|
binWidth | int | |
return | IArrayView |
public static HasMotionArtifact ( this |
||
trial | this |
|
round1Alpha | double | |
round1Threshold | double | |
round2Alpha | double | |
round2Threshold | double | |
channel | Channel | |
useMirror | bool | |
return | bool |
public static NearestPowerOfTwo ( this value, bool canReturnGreaterValues = true ) : int | ||
value | this | |
canReturnGreaterValues | bool | |
return | int |
public static StandardDevations ( this |
||
examples | this |
|
means | IArrayView |
|
return | IArrayView |
public static ZScored ( this |
||
examples | this |
|
stddevs | IArrayView |
|
means | IArrayView |
|
return | IArrayView |