HeatScatter.opCall

Create a HeatScatter. x, y must be forward ranges with elements implicitly convertible to double, and must have the same lengths.

  1. HeatScatter opCall(R1 x, R2 y, uint nRows, uint nCols)
    class HeatScatter
    static
    opCall
    (
    R1
    R2
    )
    (
    R1 x
    ,
    R2 y
    ,
    uint nRows = 10
    ,
    uint nCols = 10
    )
    if (
    isForwardRange!R1 &&
    isForwardRange!R2
    &&
    is(ElementType!R1 : double)
    &&
    is(ElementType!R2 : double)
    )
  2. HeatScatter opCall(R1 x, R2 y, uint nRows, uint nCols, double xMin, double xMax, double yMin, double yMax, OutOfBounds boundsBehavior)
  3. HeatScatter opCall(I nRows, uint nCols, double xMin, double xMax, double yMin, double yMax, OutOfBounds boundsBehavior)

Meta