HeatScatter.opCall

Create a HeatScatter with pre-specified bounds. 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 = 10, uint nCols = 10)
  2. HeatScatter opCall(R1 x, R2 y, uint nRows, uint nCols, double xMin, double xMax, double yMin, double yMax, OutOfBounds boundsBehavior = OutOfBounds.Throw)
    class HeatScatter
    static
    opCall
    (
    R1
    R2
    )
    (
    R1 x
    ,
    R2 y
    ,
    uint nRows
    ,
    uint nCols
    ,
    double xMin
    ,
    double xMax
    ,
    double yMin
    ,
    double yMax
    ,
    )
    if (
    isForwardRange!R1 &&
    isForwardRange!R2
    &&
    is(ElementType!R1 : double)
    &&
    is(ElementType!R2 : double)
    )
  3. HeatScatter opCall(I nRows, uint nCols, double xMin, double xMax, double yMin, double yMax, OutOfBounds boundsBehavior = OutOfBounds.Throw)

Meta