@ghsc/nshmp-utils-ts - 4.12.7
    Preparing search index...

    Variable ExceedanceModelConst

    ExceedanceModel: {
        truncationOff: (model: UncertaintyModel, value: number) => number;
        truncationOffSequence: (
            model: UncertaintyModel,
            sequence: number[],
        ) => number[];
        truncationUpperOnly: (model: UncertaintyModel, value: number) => number;
        truncationUpperOnlySequence: (
            model: UncertaintyModel,
            sequence: number[],
        ) => number[];
    } = ...

    Export functions

    Type Declaration

    • truncationOff: (model: UncertaintyModel, value: number) => number

      No truncation; model ignores truncation level n.

      Compute the probability of exceeding a value.

    • truncationOffSequence: (model: UncertaintyModel, sequence: number[]) => number[]

      No truncation; model ignores truncation level n.

      Compute the probability of exceeding a value.

    • truncationUpperOnly: (model: UncertaintyModel, value: number) => number

      Upper truncation only at μ + σ * n.

      Compute the probability of exceeding a value.

    • truncationUpperOnlySequence: (model: UncertaintyModel, sequence: number[]) => number[]

      Upper truncation only at μ + σ * n.

      Compute the probability of exceeding a value.