-
Notifications
You must be signed in to change notification settings - Fork 184
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
Exponential of a matrix #968
base: master
Are you sure you want to change the base?
Conversation
I think it is pretty much ready for review. Note that the optimizations I've mentioned (i.e. variable order for the Pade approximation, balancing, etc) wouldn't change the signature of the function. Either we take it as is and gradually improve it over time, or we improve it right away (but I won't have much time to do it right now). As you like. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @loiseaujc ! LGTM. I have some minor suggestions and some additional ones that might lead to some discussions.
enddo | ||
return | ||
contains | ||
elemental subroutine handle_gesv_info(info,lda,n,nrhs,err) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this procedure not provided by stdlib_lapack
(or similar)? Otherwise, developers and users might replicate this type of procedures quite often (cc @perazz )
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it should. I've sent a PM on the discourse to discuss this issue actually. I was suggesting to create a new stdlib_lapack_handling
module where all of these functions could be defined and accessed by other modules.
Co-authored-by: Jeremie Vandenplas <jeremie.vandenplas@gmail.com>
Following a comment by Meromorphic on the discourse here, this PR implements the matrix exponential function
expm
. It does so in a newstdlib_linalg_matrix_functions
submodule which might eventually accomodate later on implementations of other matrix functions (e.g.logm
,sqrtm
,cosm
, etc).Proposed interface
E = expm(A [, order, err])
whereA
is the inputn x n
matrix,order
(optional) is the order of the Pade approximation, anderr
of typelinalg_state_type
for error handling.Key facts
The implementation makes use of a standard "scaling and squaring" approach to compute the Pade approximation with a fixed order. It is adapted from the implementation by John Burkardt.
Progress
Possible improvements
The implementation is fully working and validated. Computational performances and/or robustness could potentially be improved eventually by considering:
order
for the Pade approximation based on the data. This is used for instance inscipy.linalg.expm
.At the end of the algorithm, the squaring step is implemented using a simple loop involving(irrelevant for this particular task since the scaling factor is chosen as a power of 2, might still be a useful function in the grand scheme of things)matmul
. Additional performances can be gained by implementing a fastmatrix_power
function (seenp.matrix_power
for instance).In practice, it has however never failed me so far.
cc @perazz, @jvdp1, @jalvesz