plus

operator fun plus(other: SamplingOptions): SamplingOptions

Combines two sampling options so that they are applied to a layer sequentially, left to right (the result of this sampling becomes the input of other).

Examples

geomPoint(sampling = samplingRandom(500, seed = 42) + samplingSystematic(100))

Parameters

other

The sampling to apply after this one.