You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Such a function exists in Matlab already: expmv, yet not implemented in scipy.
It would accelerate many computations, e.g. note the use of expm in this thread where all is needed is expm(A) @ v.
Useful also in solving linear dynamical systems, i.e. y1 = expmv(tA, y0) instead of y1 = expm(tA) @ y0.
If would be a welcome contribution, I assume I need: implement, add documentation, and test. Anything else?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Such a function exists in Matlab already: expmv, yet not implemented in scipy.
It would accelerate many computations, e.g. note the use of
expm
in this thread where all is needed isexpm(A) @ v
.Useful also in solving linear dynamical systems, i.e.
y1 = expmv(tA, y0)
instead ofy1 = expm(tA) @ y0
.If would be a welcome contribution, I assume I need: implement, add documentation, and test. Anything else?
Beta Was this translation helpful? Give feedback.
All reactions