API / geotoolkit / seismic / analysis / util / ArrayOperations / ArrayOperations
util.ArrayOperations.ArrayOperations
A utility class with methods useful for removing the DC Component of a signal by subtracting the mean value. Ported from the Saddleback Geosolution's Java implementation
Constructors
Methods
▸ getClassName(): string
string
▸ Static arrayCopy(src, srcPos, dest, destPos, length): void
Copies elements from a source array starting at a specified index to a destination array at a specified index. The number of components copies is specified in the length argument.
| Name | Type | Description |
|---|---|---|
src | Float32Array | Source array |
srcPos | number | Source array start index |
dest | Float32Array | Destination array |
destPos | number | Destination stat index |
length | number | The length of the copied data |
void
▸ Static fill(array, start, end, value): void
Fills the array with specified value at the specified range
| Name | Type | Description |
|---|---|---|
array | Float32Array | The array that will be filled |
start | number | The start position |
end | number | The end position |
value | number | The value. |
void
▸ Static getClassName(): string
string