Hoogle Search

Within LTS Haskell 24.39 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. sum1 :: (C a, Read sig a) => sig a -> a

    synthesizer-core Synthesizer.Generic.Signal

    No documentation available.

  2. sumRange :: C v => T v -> (Int, Int) -> v

    synthesizer-core Synthesizer.Plain.Filter.NonRecursive

    Compute the sum of the values from index l to (r-1). (I.e. somehow a right open interval.) This can be used for implementation of a moving average filter. However, its counterpart sumRangeFromPyramid is much faster for large windows.

  3. sumRangeFromPyramid :: C v => [T v] -> (Int, Int) -> v

    synthesizer-core Synthesizer.Plain.Filter.NonRecursive

    This function should be much faster than sumRange but slower than the recursively implemented movingAverage. However in contrast to movingAverage it should not suffer from cancelation.

  4. sumRangeFromPyramidFoldr :: C v => [T v] -> (Int, Int) -> v

    synthesizer-core Synthesizer.Plain.Filter.NonRecursive

    No documentation available.

  5. sumRangeFromPyramidRec :: C v => [T v] -> (Int, Int) -> v

    synthesizer-core Synthesizer.Plain.Filter.NonRecursive

    No documentation available.

  6. sums :: C v => Int -> T v -> T v

    synthesizer-core Synthesizer.Plain.Filter.NonRecursive

    Moving (uniformly weighted) average in the most trivial form. This is very slow and needs about n * length x operations.

  7. sumsDownsample2 :: C v => T v -> T v

    synthesizer-core Synthesizer.Plain.Filter.NonRecursive

    No documentation available.

  8. sumsPosModulated :: C v => T (Int, Int) -> T v -> T v

    synthesizer-core Synthesizer.Plain.Filter.NonRecursive

    No documentation available.

  9. sumsPosModulatedPyramid :: C v => Int -> T (Int, Int) -> T v -> T v

    synthesizer-core Synthesizer.Plain.Filter.NonRecursive

    Moving average, where window bounds must be always non-negative. The laziness granularity is 2^height.

  10. sumsPyramid :: C v => Int -> T v -> T v

    synthesizer-core Synthesizer.Plain.Filter.NonRecursive

    No documentation available.

Page 52 of many | Previous | Next