C# 클래스 YAMP.RangeValue

A special kind of matrix which is a range (vector).
상속: MatrixValue
파일 보기 프로젝트 열기: FlorianRappl/YAMP 1 사용 예제들

공개 메소드들

메소드 설명
Clone ( ) : MatrixValue

Clones the given range.

Deserialize ( byte content ) : Value

Tries to create a new instance from the given bytes.

RangeValue ( ) : System

Standard operator - Start at 1, Step 1 and till the end of the matrix.

RangeValue ( double start, double step ) : System

Creates a new range value from some point to the end of the matrix.

RangeValue ( double start, double end, double step ) : System

Creates a new range value with the specified steps.

Serialize ( ) : byte[]

Tries to serialize the contents into bytes.

this ( int j, int i ) : ScalarValue

Gets or sets an entry in the range.

비공개 메소드들

메소드 설명
GetValue ( int i ) : ScalarValue

메소드 상세

Clone() 공개 메소드

Clones the given range.
public Clone ( ) : MatrixValue
리턴 MatrixValue

Deserialize() 공개 메소드

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

RangeValue() 공개 메소드

Standard operator - Start at 1, Step 1 and till the end of the matrix.
public RangeValue ( ) : System
리턴 System

RangeValue() 공개 메소드

Creates a new range value from some point to the end of the matrix.
public RangeValue ( double start, double step ) : System
start double The starting value.
step double The step value.
리턴 System

RangeValue() 공개 메소드

Creates a new range value with the specified steps.
public RangeValue ( double start, double end, double step ) : System
start double The starting value.
end double The ending value.
step double The step value.
리턴 System

Serialize() 공개 메소드

Tries to serialize the contents into bytes.
public Serialize ( ) : byte[]
리턴 byte[]

this() 공개 메소드

Gets or sets an entry in the range.
public this ( int j, int i ) : ScalarValue
j int The 1-based row-index.
i int The 1-based column-index.
리턴 ScalarValue