padds data points to the beginning, the end and on internal intervals of the data
Type/Module | Description |
Function or value | Description |
Full Usage:
pad data minDistance maxDistance getDiff addToXValue borderpadding borderPaddingMethod internalPaddingMethod hugeGapPaddingMethod
Parameters:
('a * float)[]
-
minDistance : float
-
maxDistance : float
-
getDiff : 'a -> 'a -> float
-
get the difference in x_Values as float representation (if 'a is float then (-))
addToXValue : 'a -> float -> 'a
-
function that adds a float to the x_Value (if 'a is float then (+))
borderpadding : int
-
borderPaddingMethod : BorderPaddingMethod
-
internalPaddingMethod : InternalPaddingMethod
-
hugeGapPaddingMethod : HugeGapPaddingMethod
-
Returns: ('a * float)[]
Modifiers: inline Type parameters: 'a |
Adds additional data points to the beginning and end of data set (number: borderpadding; x_Value distance: minDistance; y_Value: random). default: internalPaddingMethod=LinearInterpolation; hugeGapPaddingMethod=Random (like in border cases)
Example
|
Full Usage:
padSignalEnd x
Parameters:
'a
Returns: 'b
|
|
Full Usage:
padSignalStart x
Parameters:
'a
Returns: 'b
|
|
Full Usage:
padSignalStartAndEnd x
Parameters:
'a
Returns: 'b
|
|
Full Usage:
padSparseSignal x
Parameters:
'a
Returns: 'b
|
|