C# 클래스 YAMP.HeatmapPlotValue

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

Private Properties

프로퍼티 타입 설명

공개 메소드들

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

Inspects the given matrix and sets the series to this matrix M.

Deserialize ( byte content ) : Value

Converts a set of bytes to a new instance.

HeatmapPlotValue ( ) : System

Creates a new instance.

Serialize ( ) : byte[]

Converts the given instance to an array of bytes.

this ( int index, int point ) : HeatPoint

Gets one particular point of a heatmap series (we only have 1 heatmap series!).

this ( int index ) : Points

Gets a series of HeatPoints (here we have only 1 series).

메소드 상세

AddPoints() 공개 메소드

Inspects the given matrix and sets the series to this matrix M.
public AddPoints ( MatrixValue M ) : void
M MatrixValue The matrix to investigate.
리턴 void

Deserialize() 공개 메소드

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

HeatmapPlotValue() 공개 메소드

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

Serialize() 공개 메소드

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

this() 공개 메소드

Gets one particular point of a heatmap series (we only have 1 heatmap series!).
public this ( int index, int point ) : HeatPoint
index int Obsolete since we only have 1 series.
point int The point to get (0.. N - 1, where N is the number of points).
리턴 HeatPoint

this() 공개 메소드

Gets a series of HeatPoints (here we have only 1 series).
public this ( int index ) : Points
index int Obsolete (always returns the same).
리턴 Points