C# 클래스 YAMP.ComplexPlotValue

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

공개 메소드들

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

A complex plot cannot have any points assigned. You have to assign a function instead.

ComplexPlotValue ( ) : System

Creates a new complex plot.

Deserialize ( byte content ) : Value

Creates a new instance from the given bytes.

Serialize ( ) : byte[]

Converts the instance into bytes.

SetFunction ( FunctionValue function ) : void

Sets the function to use for the complex plot.

메소드 상세

AddPoints() 공개 메소드

A complex plot cannot have any points assigned. You have to assign a function instead.
public AddPoints ( MatrixValue m ) : void
m MatrixValue Useless.
리턴 void

ComplexPlotValue() 공개 메소드

Creates a new complex plot.
public ComplexPlotValue ( ) : System
리턴 System

Deserialize() 공개 메소드

Creates a new instance from the given bytes.
public Deserialize ( byte content ) : Value
content byte The binary content to create a new instance from.
리턴 Value

Serialize() 공개 메소드

Converts the instance into bytes.
public Serialize ( ) : byte[]
리턴 byte[]

SetFunction() 공개 메소드

Sets the function to use for the complex plot.
public SetFunction ( FunctionValue function ) : void
function FunctionValue The function to consider.
리턴 void