I get all the values of invone as NaN with this. Can't figure out what is wrong. Is there any easier way to take inverse of a matrix other than mathdotnet? It is hard to google cause when you type inverse you get the transpose codes.
for( int i = 0 ; i < classOneCount ; i++ )
{
for( int j = 0 ; j < classOneCount ; j++ )
{
gecicione[ gecicicounter ] = classOneEpsilon[ i , j ];
gecicicounter++;
}
}
inverseOneEpsilon = new DenseMatrix( classOneCount , classOneCount , gecicione );
var invone= inverseOneEpsilon.Inverse();