I need to use a 4 dimensional matrix.
I am using math.net numeric library for c#,
I have tried the
Matrix<Matrix<double>> test;
but it didn't work
i know that I can write the following
Matrix<double> [][] test;
but I don't want it this way