Skip to content
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

Open
wants to merge 7 commits into
base: master
Choose a base branch
from

Conversation

loiseaujc
Copy link

@loiseaujc loiseaujc commented Mar 27, 2025

Following a comment by Meromorphic on the discourse here, this PR implements the matrix exponential function expm. It does so in a new stdlib_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]) where A is the input n x n matrix, order (optional) is the order of the Pade approximation, and err of type linalg_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

  • Base implementation.
  • Tests
  • in-code Documentation
  • Specifications
  • Example

Possible improvements

The implementation is fully working and validated. Computational performances and/or robustness could potentially be improved eventually by considering:

  • Automatic estimation of the best order for the Pade approximation based on the data. This is used for instance in scipy.linalg.expm.
  • Balancing is not used currently, but it might improve the robustness.
  • At the end of the algorithm, the squaring step is implemented using a simple loop involving matmul. Additional performances can be gained by implementing a fast matrix_power function (see np.matrix_power for instance). (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)

In practice, it has however never failed me so far.

cc @perazz, @jvdp1, @jalvesz

@loiseaujc loiseaujc marked this pull request as draft March 27, 2025 11:34
@loiseaujc loiseaujc marked this pull request as ready for review March 27, 2025 13:25
@loiseaujc
Copy link
Author

loiseaujc commented Mar 27, 2025

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.

Copy link
Member

@jvdp1 jvdp1 left a 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)
Copy link
Member

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 )

Copy link
Author

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.

loiseaujc and others added 3 commits March 30, 2025 15:00
Co-authored-by: Jeremie Vandenplas <jeremie.vandenplas@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants