Thanks to YAKPOL
Also your solution goes OK.
The problem is how to get the solution of an other matrix (MInverse). I think that I should capture it with a sheet ¿isn’t it?
Have anybody used Mathematica libraries with VB? Alan D.J. Atkinson
atkinson@unex.es
Thanks a lot!!!!
It works OK !!!
I have used the same method to get the solution of an inverse matix (with an other sheet and calling cell by cell)
Thanks again! Alan D.J. Atkinson
atkinson@unex.es
I would like to know how could I get a solution to solve a matrix from VB using a Excel command.
For exemple, I try to solve a determinant:
1 2
3 4 = -2
Dim obj As Excel.Application
Set obj = CreateObject("Excel.Application")
Solution = obj.Application.MDeterm(1,2;3,4)
But VB...