C# Class Accord.Math.Environments.OctaveEnvironment.mat

Matrix definition operator.
Show file Open project: accord-net/framework

Public Properties

Property Type Description
matrix ].double[

Public Methods

Method Description
Equals ( object obj ) : bool

Determines whether the specified System.Object is equal to this instance.

GetHashCode ( ) : int

Returns a hash code for this instance.

mat ( double matrix ) : Accord.Math

Initializes a new instance of the mat class.

operator ( ) : bool

Equality operator.

operator ( ) : mat

Multiplication operator

Method Details

Equals() public method

Determines whether the specified System.Object is equal to this instance.
public Equals ( object obj ) : bool
obj object
return bool

GetHashCode() public method

Returns a hash code for this instance.
public GetHashCode ( ) : int
return int

mat() public method

Initializes a new instance of the mat class.
public mat ( double matrix ) : Accord.Math
matrix double
return Accord.Math

operator() public static method

Equality operator.
public static operator ( ) : bool
return bool

operator() public static method

Multiplication operator
public static operator ( ) : mat
return mat

Property Details

matrix public property

Inner matrix object.
public double[,] matrix
return ].double[