C# Class YAMP.ComplexPlotValue

Holds the complexplot data.
Inheritance: XYPlotValue
Afficher le fichier Open project: FlorianRappl/YAMP Class Usage Examples

Méthodes publiques

Méthode Description
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.

Method Details

AddPoints() public méthode

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

ComplexPlotValue() public méthode

Creates a new complex plot.
public ComplexPlotValue ( ) : System
Résultat System

Deserialize() public méthode

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

Serialize() public méthode

Converts the instance into bytes.
public Serialize ( ) : byte[]
Résultat byte[]

SetFunction() public méthode

Sets the function to use for the complex plot.
public SetFunction ( FunctionValue function ) : void
function FunctionValue The function to consider.
Résultat void