|
ScatterplotBoxShow Method (String, FuncDouble, Double, Double, Double, Double)
|
Displays a scatter plot.
Namespace:
Accord.Controls
Assembly:
Accord.Controls (in Accord.Controls.dll) Version: 3.8.0
Syntax public static ScatterplotBox Show(
string title,
Func<double, double> function,
double min,
double max,
double step
)
Public Shared Function Show (
title As String,
function As Func(Of Double, Double),
min As Double,
max As Double,
step As Double
) As ScatterplotBox
Request Example
View SourceParameters
- title
- Type: SystemString
The title for the plot window. - function
- Type: SystemFuncDouble, Double
The function to plot. - min
- Type: SystemDouble
The minimum value for the functions argument parameter. - max
- Type: SystemDouble
The maximum value for the functions argument parameter. - step
- Type: SystemDouble
The step size to use during plotting.
Return Value
Type:
ScatterplotBoxSee Also