functionXY
Fill trace x and y with values based on a given integer xRange and a numeric function. Old values are erased.
Fill trace x and y with values based on given xs and a function for y values. Old values are erased.
fun Trace.functionXY(xRange: ClosedFloatingPointRange<Double>, step: Double = 1.0, function: (Double) -> Number)
Fill values in xRange with given step using given function. Old values are erased.