Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I would like to take the inverse of a matrix within my VBA code as part
of a sequence of operations. Something like the following: Dim vMtxA As Variant, vMtxB As Variant, vMtxC() As Variant vMtxA = Range("B4:E7") vMtxB = Application.MInverse(vMtxA) OR ReDim vMtxC(4,4) vMtxC = Application.MInverse(vMtxA) I have not been able to find a way to do this. I would then multiply the inverse by a RHS vector to get a solution vector that would be used in subsequent calculations using MMult, etc. Also I have not figgured out how to add two variant arrays?? vMtxD = vMtxA + vMtxB |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
bitwise operations as in xor | Excel Discussion (Misc queries) | |||
How can I transpose nXm matrix to mXn Matrix | Excel Worksheet Functions | |||
Matrix operations with complex numbers | Excel Discussion (Misc queries) | |||
Matrix Operations (MInvert Function) | Excel Programming | |||
VBA for matrix operations | Excel Programming |