C# 클래스 MarkovChains.MarkovChain.Matrices.Absolute.MatrixRow

Row of absolute value matrix.
상속: MatrixRowCommon, IAbsoluteMatrix, IOpenMatrix
파일 보기 프로젝트 열기: intervals-mining-lab/libiada-core

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
Add ( int arrayToTeach ) : double

The add.

IncrementValue ( ) : void

The inc value.

MatrixRow ( int alphabetPower, int dimensionality ) : System

Initializes a new instance of the MatrixRow class.

ProbabilityMatrix ( ) : IProbabilityMatrix

The probability matrix.

Sum ( int arrayOfIndexes ) : double

The sum.

메소드 상세

Add() 공개 메소드

The add.
/// Thrown if arrayToTeach is null or its length greater than rank. ///
public Add ( int arrayToTeach ) : double
arrayToTeach int /// The array to teach. ///
리턴 double

IncrementValue() 공개 메소드

The inc value.
public IncrementValue ( ) : void
리턴 void

MatrixRow() 공개 메소드

Initializes a new instance of the MatrixRow class.
public MatrixRow ( int alphabetPower, int dimensionality ) : System
alphabetPower int /// Alphabet of the matrix. ///
dimensionality int /// Dimensionality of the matrix. ///
리턴 System

ProbabilityMatrix() 공개 메소드

The probability matrix.
public ProbabilityMatrix ( ) : IProbabilityMatrix
리턴 IProbabilityMatrix

Sum() 공개 메소드

The sum.
/// Thrown if arrayOfIndexes is not null and not NullValue. ///
public Sum ( int arrayOfIndexes ) : double
arrayOfIndexes int /// The array of indexes. ///
리턴 double