C# 클래스 YAMP.ErrorPlotValue

Is the type for errorbar plots.
상속: XYPlotValue
파일 보기 프로젝트 열기: FlorianRappl/YAMP 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
AddPoints ( MatrixValue m ) : void

Adds (multiple) series in form of a matrix.

AddPoints ( MatrixValue y, MatrixValue err ) : void

Adds a single series to the plot.

AddPoints ( MatrixValue x, MatrixValue y, MatrixValue err ) : void

Adds a single series to the plot.

AddValues ( double _x, double _y, double _xerr, double _yerr ) : void
Deserialize ( byte content ) : Value

Converts a set of bytes to a new instance.

ErrorPlotValue ( ) : System

Creates a new instance.

Serialize ( ) : byte[]

Converts the given instance to an array of bytes.

this ( int index, int point ) : ErrorPointPair

Gets a certain point of the specified series.

this ( int index ) : Points

Gets the series at the specified index.

메소드 상세

AddPoints() 공개 메소드

Adds (multiple) series in form of a matrix.
public AddPoints ( MatrixValue m ) : void
m MatrixValue The matrix which contains the values.
리턴 void

AddPoints() 공개 메소드

Adds a single series to the plot.
public AddPoints ( MatrixValue y, MatrixValue err ) : void
y MatrixValue The y values.
err MatrixValue The y errors.
리턴 void

AddPoints() 공개 메소드

Adds a single series to the plot.
public AddPoints ( MatrixValue x, MatrixValue y, MatrixValue err ) : void
x MatrixValue The x values.
y MatrixValue The y values.
err MatrixValue The (x and y) errors.
리턴 void

AddValues() 공개 메소드

public AddValues ( double _x, double _y, double _xerr, double _yerr ) : void
_x double
_y double
_xerr double
_yerr double
리턴 void

Deserialize() 공개 메소드

Converts a set of bytes to a new instance.
public Deserialize ( byte content ) : Value
content byte The binary representation.
리턴 Value

ErrorPlotValue() 공개 메소드

Creates a new instance.
public ErrorPlotValue ( ) : System
리턴 System

Serialize() 공개 메소드

Converts the given instance to an array of bytes.
public Serialize ( ) : byte[]
리턴 byte[]

this() 공개 메소드

Gets a certain point of the specified series.
public this ( int index, int point ) : ErrorPointPair
index int The 0-based index of the series.
point int The 0-based index of the point.
리턴 ErrorPointPair

this() 공개 메소드

Gets the series at the specified index.
public this ( int index ) : Points
index int The 0-based index of the series.
리턴 Points