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
* Exponential via MatrixAlgebraKit
* include case where t is real and tau is complex
* Add test
* Fix formatting
* Update correspondence with MAK and extend tests
* Update src/factorizations/matrixalgebrakit.jl
Co-authored-by: Lukas Devos <ldevos98@gmail.com>
* deprecate `exp!`
* Remove extra definitions that are now in MatrixAlgebraKit
* bump MAK version
* update implementations
* remove double test
* refactor exponential tests in the style of other tests
* fix `copy_input` shouldn't alias
* some more small fixes
---------
Co-authored-by: Lukas Devos <ldevos98@gmail.com>
Copy file name to clipboardExpand all lines: docs/src/man/linearalgebra.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ Note that, because the adjoint interchanges domain and codomain, we have `space(
40
40
41
41
When tensor map instances are endomorphisms, i.e. they have the same domain and codomain, there is a multiplicative identity which can be obtained as `one(t)` or `one!(t)`, where the latter overwrites the contents of `t`.
42
42
The multiplicative identity on a space `V` can also be obtained using `id(A, V)` as discussed [above](@ref ss_tensor_construction), such that for a general homomorphism `t′`, we have `t′ == id(codomain(t′)) * t′ == t′ * id(domain(t′))`.
43
-
Returning to the case of endomorphisms `t`, we can compute the trace via `tr(t)` and exponentiate them using `exp(t)`, or if the contents of `t` can be destroyed in the process, `exp!(t)`.
43
+
Returning to the case of endomorphisms `t`, we can compute the trace via `tr(t)` and exponentiate them using `exp(t)` (or the more general `exponential(t)`), or if the contents of `t` can be destroyed in the process, `exponential!(t)`.
44
44
Furthermore, there are a number of tensor factorizations for both endomorphisms and general homomorphisms that we discuss on the [Tensor factorizations](@ref ss_tensor_factorization) page.
45
45
46
46
Finally, there are a number of operations that also belong in this paragraph because of their analogy to common matrix operations.
0 commit comments