-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Julia matrix exponential? #44
Comments
That would be great. There is absolutely no reason why the base implementation uses |
Thanks for the pointer for the replacement of |
I created a generic matrix exponential based on the current Julia matrix exponential, but without matrix balancing, see here for the added code. I think it is valuable to have this as a starting point. Please let me know if you would like to include it in this repository. |
Is there an interest in adding the generic matrix exponential? |
Yes. Did you get around looking into a generic |
We are quite interested in this. @sdewaele, your link for your code is broken, is there some place we can see it and perhaps help get this done? |
I am sorry to say I have deleted my fork of the repo. Anyway, not too much is lost: all I did compared the the current implementation is replace |
I needed a pure Julia implementation of matrix exponentiation, so I updated an old 2012 gist to Julia 1.0, see here. I am happy to contribute it to this repo if desired. Probably a better implementation can be made that is closer to the current Julia implementation. After all, it only uses
LAPACK.gebal!
andLAPACK.gesv!
as far as I can tell.The text was updated successfully, but these errors were encountered: