C# 클래스 Accord.Controls.ScatterplotBox

파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
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