C# Класс Accord.Controls.ScatterplotBox

Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Hold ( ) : void

Holds the execution until the window has been closed.

SetLinesVisible ( bool visible ) : ScatterplotBox

Sets whether to show lines connecting sequential points in the scatter plot.

SetScaleTight ( bool tight ) : ScatterplotBox

Sets whether to remove the grace space between the axis labels and points.

SetSize ( int width, int height ) : ScatterplotBox

Sets size of the scatter plot window.

SetSymbolSize ( float size ) : ScatterplotBox

Sets the size of the symbols in the scatter plot.

SetTitle ( string text ) : ScatterplotBox

Sets the window title of the scatterplot box.

Show ( double>.Func function, DoubleRange range ) : ScatterplotBox

Displays a scatter plot.

Show ( double>.Func function, DoubleRange range, double step ) : ScatterplotBox

Displays a scatter plot.

Show ( double>.Func function, double min, double max, double step ) : ScatterplotBox

Displays a scatter plot.

Show ( Scatterplot scatterplot ) : ScatterplotBox

Displays a scatter plot.

Show ( String title, double>.Func function ) : ScatterplotBox

Displays a scatter plot.

Show ( String title, double>.Func function, DoubleRange range ) : ScatterplotBox

Displays a scatter plot.

Show ( String title, double>.Func function, double step ) : ScatterplotBox

Displays a scatter plot.

Show ( String title, double>.Func function, double min, double max, double step ) : ScatterplotBox

Displays a scatter plot.

Show ( String title, double>.Func function, int npoints ) : ScatterplotBox

Displays a scatter plot.

Show ( double x ) : ScatterplotBox

Displays a scatter plot with the specified data.

Show ( double x, int z ) : ScatterplotBox

Displays a scatter plot with the specified data.

Show ( string title, double x ) : ScatterplotBox

Displays a scatter plot with the specified data.

Show ( string title, double x, double y ) : ScatterplotBox

Displays a scatter plot with the specified data.

Show ( string title, double x, double y, int z ) : ScatterplotBox

Displays a scatter plot with the specified data.

Show ( string title, double x, int z ) : ScatterplotBox

Displays a scatter plot with the specified data.

WaitForClose ( ) : void

Blocks the caller until the form is closed.

Приватные методы

Метод Описание
GetRange ( double>.Func source, DoubleRange &range ) : bool
ScatterplotBox ( ) : System
show ( Scatterplot scatterplot ) : ScatterplotBox
show ( String title, double>.Func function, double min, double max, double step, int npoints = null ) : ScatterplotBox

Описание методов

Hold() публичный метод

Holds the execution until the window has been closed.
public Hold ( ) : void
Результат void

SetLinesVisible() публичный метод

Sets whether to show lines connecting sequential points in the scatter plot.
public SetLinesVisible ( bool visible ) : ScatterplotBox
visible bool
Результат ScatterplotBox

SetScaleTight() публичный метод

Sets whether to remove the grace space between the axis labels and points.
public SetScaleTight ( bool tight ) : ScatterplotBox
tight bool
Результат ScatterplotBox

SetSize() публичный метод

Sets size of the scatter plot window.
public SetSize ( int width, int height ) : ScatterplotBox
width int The desired width.
height int The desired height.
Результат ScatterplotBox

SetSymbolSize() публичный метод

Sets the size of the symbols in the scatter plot.
public SetSymbolSize ( float size ) : ScatterplotBox
size float The desired symbol size.
Результат ScatterplotBox

SetTitle() публичный метод

Sets the window title of the scatterplot box.
public SetTitle ( string text ) : ScatterplotBox
text string The desired title text for the window.
Результат ScatterplotBox

Show() публичный статический метод

Displays a scatter plot.
public static Show ( double>.Func function, DoubleRange range ) : ScatterplotBox
function double>.Func The function to plot.
range DoubleRange The functions argument range to be plotted.
Результат ScatterplotBox

Show() публичный статический метод

Displays a scatter plot.
public static Show ( double>.Func function, DoubleRange range, double step ) : ScatterplotBox
function double>.Func The function to plot.
range DoubleRange The functions argument range to be plotted.
step double The step size to use during plotting.
Результат ScatterplotBox

Show() публичный статический метод

Displays a scatter plot.
public static Show ( double>.Func function, double min, double max, double step ) : ScatterplotBox
function double>.Func The function to plot.
min double The minimum value for the functions argument parameter.
max double The maximum value for the functions argument parameter.
step double The step size to use during plotting.
Результат ScatterplotBox

Show() публичный статический метод

Displays a scatter plot.
public static Show ( Scatterplot scatterplot ) : ScatterplotBox
scatterplot Scatterplot The scatter plot to show.
Результат ScatterplotBox

Show() публичный статический метод

Displays a scatter plot.
public static Show ( String title, double>.Func function ) : ScatterplotBox
title String The title for the plot window.
function double>.Func The function to plot.
Результат ScatterplotBox

Show() публичный статический метод

Displays a scatter plot.
public static Show ( String title, double>.Func function, DoubleRange range ) : ScatterplotBox
title String The title for the plot window.
function double>.Func The function to plot.
range DoubleRange The functions argument range to be plotted.
Результат ScatterplotBox

Show() публичный статический метод

Displays a scatter plot.
public static Show ( String title, double>.Func function, double step ) : ScatterplotBox
title String The title for the plot window.
function double>.Func The function to plot.
step double The step size to use during plotting.
Результат ScatterplotBox

Show() публичный статический метод

Displays a scatter plot.
public static Show ( String title, double>.Func function, double min, double max, double step ) : ScatterplotBox
title String The title for the plot window.
function double>.Func The function to plot.
min double The minimum value for the functions argument parameter.
max double The maximum value for the functions argument parameter.
step double The step size to use during plotting.
Результат ScatterplotBox

Show() публичный статический метод

Displays a scatter plot.
public static Show ( String title, double>.Func function, int npoints ) : ScatterplotBox
title String The title for the plot window.
function double>.Func The function to plot.
npoints int The number of points to use during plotting.
Результат ScatterplotBox

Show() публичный статический метод

Displays a scatter plot with the specified data.
public static Show ( double x ) : ScatterplotBox
x double The x-values for the data.
Результат ScatterplotBox

Show() публичный статический метод

Displays a scatter plot with the specified data.
public static Show ( double x, int z ) : ScatterplotBox
x double A two column matrix containing the (x,y) data pairs as rows.
z int The corresponding labels for the (x,y) pairs.
Результат ScatterplotBox

Show() публичный статический метод

Displays a scatter plot with the specified data.
public static Show ( string title, double x ) : ScatterplotBox
title string The title for the plot window.
x double The x-values for the data.
Результат ScatterplotBox

Show() публичный статический метод

Displays a scatter plot with the specified data.
public static Show ( string title, double x, double y ) : ScatterplotBox
title string The title for the plot window.
x double The x-values for the data.
y double The y-values for the data.
Результат ScatterplotBox

Show() публичный статический метод

Displays a scatter plot with the specified data.
public static Show ( string title, double x, double y, int z ) : ScatterplotBox
title string The title for the plot window.
x double The x-values for the data.
y double The y-values for the data.
z int The corresponding labels for the (x,y) pairs.
Результат ScatterplotBox

Show() публичный статический метод

Displays a scatter plot with the specified data.
public static Show ( string title, double x, int z ) : ScatterplotBox
title string The title for the plot window.
x double A two column matrix containing the (x,y) data pairs as rows.
z int The corresponding labels for the (x,y) pairs.
Результат ScatterplotBox

WaitForClose() публичный метод

Blocks the caller until the form is closed.
public WaitForClose ( ) : void
Результат void