C# Class CMatrix, promenade

Show file Open project: jarllarsson/promenade Class Usage Examples

Public Properties

Property Type Description
m ].float[
m_cols int
m_rows int

Public Methods

Method Description
CMatrix ( int p_rows, int p_cols ) : System.Collections
Dot ( CMatrix, p_ma, CMatrix, p_mb ) : float
Mul ( CMatrix, p_ma, CMatrix, p_mb ) : CMatrix,
Transpose ( CMatrix, p_m ) : CMatrix,
operator ( ) : CMatrix,
this ( int p_row, int p_col ) : float

Method Details

CMatrix() public method

public CMatrix ( int p_rows, int p_cols ) : System.Collections
p_rows int
p_cols int
return System.Collections

Dot() public static method

public static Dot ( CMatrix, p_ma, CMatrix, p_mb ) : float
p_ma CMatrix,
p_mb CMatrix,
return float

Mul() public static method

public static Mul ( CMatrix, p_ma, CMatrix, p_mb ) : CMatrix,
p_ma CMatrix,
p_mb CMatrix,
return CMatrix,

Transpose() public static method

public static Transpose ( CMatrix, p_m ) : CMatrix,
p_m CMatrix,
return CMatrix,

operator() public static method

public static operator ( ) : CMatrix,
return CMatrix,

this() public method

public this ( int p_row, int p_col ) : float
p_row int
p_col int
return float

Property Details

m public property

public float[,] m
return ].float[

m_cols public property

public int m_cols
return int

m_rows public property

public int m_rows
return int