lehrymut14
New Member
- Joined
- May 21, 2017
- Messages
- 1
Hi,
I have some problem with function of MMULT in excel.
I want to do sample two matrix multiplication by MMULT function.
X matrix at a given interval and k is a function that multiplies the matrix for the value of the number.
Many thanks for your help.
Example: Selected cells in the range A1 and C3, and Let k be the value of 3 (k=3).
=MatrixMultiply(A1:C3;3) -->> will give result
Function MatrixMultiply(X As Range, k As Integer) As Variant
.
.
.
End Function
‘---------------------------
‘Sample Use
‘-----------------------
Sub Test()
.
.
.
End Sub
I have some problem with function of MMULT in excel.
I want to do sample two matrix multiplication by MMULT function.
X matrix at a given interval and k is a function that multiplies the matrix for the value of the number.
Many thanks for your help.
Example: Selected cells in the range A1 and C3, and Let k be the value of 3 (k=3).
=MatrixMultiply(A1:C3;3) -->> will give result
Function MatrixMultiply(X As Range, k As Integer) As Variant
.
.
.
End Function
‘---------------------------
‘Sample Use
‘-----------------------
Sub Test()
.
.
.
End Sub