kumulant

CrossingResult

@Serializable
@SerialName(value = "CrossingResult")
data class CrossingResult(val level: Double, val upCrossings: Long, val downCrossings: Long) : Result(source)

Counts of upward and downward crossings of a fixed level.

Constructors

Link copied to clipboard
constructor(level: Double, upCrossings: Long, downCrossings: Long)

Properties

Link copied to clipboard

Number of strict transitions from value >= level to value < level.

Link copied to clipboard

Level the input stream was compared against.

Link copied to clipboard

Number of strict transitions from value < level to value >= level.

CrossingResult

constructor(level: Double, upCrossings: Long, downCrossings: Long)(source)

downCrossings

Number of strict transitions from value >= level to value < level.

level

Level the input stream was compared against.

upCrossings

Number of strict transitions from value < level to value >= level.