I would like to perform row-wise and column-wise matrix concatenation using .NET Framework
with MathNet
library. For example, if I have 3 matrices A
, B
, C
of dimension nxn
, I would like create a new matrix D
of dimension 2nx2n
where
// I have used MATLAB syntax here to explain the operation
// D = [A B; B C];
I have currently defined the matrices A
, B
, C
as DenseMatrix
class and would like to proceed from here.