Функция на Visual Basic за транспониране на матрици.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Class Matrix | |
Public Shared Function mTranspose(ByVal m1(,) As Double) | |
Dim m2(m1.GetLength(1), m1.GetLength(0)) As Double | |
For i As Integer = 0 To m1.GetLength(0) - 1 | |
For j As Integer = 0 To m1.GetLength(1) - 1 | |
m2(j, i) = m1(i, j) | |
Next j | |
Next i | |
Return m2 | |
End Function | |
End Class |