The OpenD Programming Language

correlation.correlation

  1. CommonType!(stdevType!RangeX, stdevType!RangeY) correlation(RangeX x, RangeY y)
    template correlation(CorrelationAlgo correlationAlgo = CorrelationAlgo.hybrid, Summation summation = Summation.appropriate)
    CommonType!(stdevType!RangeX, stdevType!RangeY)
    correlation
    (
    RangeX
    RangeY
    )
    (
    RangeX x
    ,
    RangeY y
    )
    if (
    isInputRange!RangeX &&
    )
  2. template correlation(F, CorrelationAlgo correlationAlgo = CorrelationAlgo.hybrid, Summation summation = Summation.appropriate)
  3. template correlation(F, string correlationAlgo, string summation = "appropriate")
  4. template correlation(string correlationAlgo, string summation = "appropriate")

Parameters

x RangeX

range, must be finite iterable

y RangeY

range, must be finite iterable

Meta