Replaces a value with previous or next value.
VALFILL(series, val, mode)
series |
- |
An input series or array. |
||||||||||||
val |
- |
Optional. A real, the value to replace. Defaults to 0.0. |
||||||||||||
mode |
- |
Optional. An integer, the fill mode: |
||||||||||||
|
|
|
A series or array.
W1: {1, 0, 0, 3, 4, 0, 5}
W2: valfill(W1, 0, 1)
W3: valfill(W1, 0, 3)
W2 == {1, 1, 1, 3, 4, 4, 5}
W3 == {1, 3, 3, 3, 4, 5, 5}
The zeros of W2 are replaced with the last non-zero value.
The zeros of W3 are replaced with the next non-zero value.
W1: randn(10)
W2: (W1 > 0.4) * W1
W3: valfill(W2)
W3 contains an array where the zeros of each column of W2 are replaced with the last non-zero value or if no value is found, the next non-zero value.
VALFILL is based on NAFILL. See NAFILL for more details.