ScatterPlot.opCall

Factory method for creating a ScatterPlot. x and y must both be input ranges of the same length, with elements implicitly convertible to doubles. Note that they are copied inside the factory, so changes to the original ranges after calling this factory will not affect the plot.

  1. ScatterPlot opCall(R1 x, R2 y)
    class ScatterPlot
    static
    opCall
    (
    R1
    R2
    )
    (
    R1 x
    ,
    R2 y
    )
    if (
    isInputRange!R1 &&
    is(ElementType!R1 : double)
    &&
    isInputRange!R2
    &&
    is(ElementType!R2 : double)
    )
  2. ScatterPlot opCall(R y)

Meta