C# Class LinearAlgebra.DenseMatrix

Datei anzeigen Open project: jvking/bp-lda Class Usage Examples

Public Properties

Property Type Description
DenseMatrixValue LinearAlgebra.DenseColumnVector[]
DenseMatrixValuePerRow LinearAlgebra.DenseRowVector[]
isPerColumn bool
nCols int
nRows int

Public Methods

Method Description
ClearValue ( ) : void
DenseMatrix ( ) : System
DenseMatrix ( DenseMatrix SourceMatrix ) : System
DenseMatrix ( int NumRows, int NumCols ) : System
DenseMatrix ( int NumRows, int NumCols, bool IsPerColumn ) : System
DenseMatrix ( int NumRows, int NumCols, float Value ) : System
FillColumn ( float InputColumn, int IdxCol ) : void
FillRandomValues ( ) : void
FillRandomValues ( int RandomSeed ) : void
FillValue ( float Value ) : void
IndexOfVerticalMax ( ) : int[]
Max ( ) : float
MaxAbsValue ( ) : float
Min ( ) : float

Method Details

ClearValue() public method

public ClearValue ( ) : void
return void

DenseMatrix() public method

public DenseMatrix ( ) : System
return System

DenseMatrix() public method

public DenseMatrix ( DenseMatrix SourceMatrix ) : System
SourceMatrix DenseMatrix
return System

DenseMatrix() public method

public DenseMatrix ( int NumRows, int NumCols ) : System
NumRows int
NumCols int
return System

DenseMatrix() public method

public DenseMatrix ( int NumRows, int NumCols, bool IsPerColumn ) : System
NumRows int
NumCols int
IsPerColumn bool
return System

DenseMatrix() public method

public DenseMatrix ( int NumRows, int NumCols, float Value ) : System
NumRows int
NumCols int
Value float
return System

FillColumn() public method

public FillColumn ( float InputColumn, int IdxCol ) : void
InputColumn float
IdxCol int
return void

FillRandomValues() public method

public FillRandomValues ( ) : void
return void

FillRandomValues() public method

public FillRandomValues ( int RandomSeed ) : void
RandomSeed int
return void

FillValue() public method

public FillValue ( float Value ) : void
Value float
return void

IndexOfVerticalMax() public method

public IndexOfVerticalMax ( ) : int[]
return int[]

Max() public method

public Max ( ) : float
return float

MaxAbsValue() public method

public MaxAbsValue ( ) : float
return float

Min() public method

public Min ( ) : float
return float

Property Details

DenseMatrixValue public_oe property

public DenseColumnVector[],LinearAlgebra DenseMatrixValue
return LinearAlgebra.DenseColumnVector[]

DenseMatrixValuePerRow public_oe property

public DenseRowVector[],LinearAlgebra DenseMatrixValuePerRow
return LinearAlgebra.DenseRowVector[]

isPerColumn public_oe property

public bool isPerColumn
return bool

nCols public_oe property

public int nCols
return int

nRows public_oe property

public int nRows
return int