If I have a matrixA that is 1x5 with all values = 1.0, and I want to resize it to 1x8 by having other elements as 0's, how do I do it?
Matrix<double> A = Matrix<double>.Build.Dense(1, 5, 1.0);
In other words, is it possible to multiple or carry out any operations on 2 different size matrices ?