Функция на 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 mMult(ByVal m1(,) As Double, ByVal m2(,) As Double) | |
Dim m3(m1.GetLength(0), m2.GetLength(1)) As Double | |
For i As Integer = 0 To m1.GetLength(0) - 1 | |
For j As Integer = 0 To m1.GetLength(1) - 1 | |
For k As Integer = 0 To m2.GetLength(1) - 1 | |
m3(i, k) += m1(i, j) * m2(j, k) | |
Next k | |
Next j | |
Next i | |
Return m3 | |
End Function | |
End Class |