I am working on a project that I need to do matrix inverse. The minverse does
not work well when the matrix size is beyond 52*52. Fortunately, I found one
free add-in that can provide much powerful calculation on matrix inverse, but I
do not know how to use its function in VBA.
in my original code, I use the Excel function "minverse" as the following:
mincoeff =
Application.WorksheetFunction.MInverse(Range(Worksheets("coefficient").Cells(1,
1), Worksheets("coefficient").Cells(v, v)))
I want to apply the add-in function which is Minverse.EXT to replace Minverse,
what should I do?