
TransposeMatrix – Evaluate the transposed matrix
‘ Evaluate the transposed matrix’ A transposed matrix is the array you get when you “rotate” a bi-dimensional ‘ array” Example’ Dim arr(,) As Double = {{0.0, 0.1, 0.2}, {1.0, 1.1, 1.2}}’ Dim i, j As Integer’ ‘ print the original matrix’ Debug.WriteLine(“Original matrix”)’ For i = 0 To arr.GetUpperBound(0)’