Add a hermitian
function to stdlib_linalg
#883
Labels
idea
Proposition of an idea and opening an issue to discuss it
hermitian
function to stdlib_linalg
#883
Motivation
I've been working quite a lot with
complex
arrays recently and ended-up having to writeconj(transpose(A))
quite often. Would encapsulating these into ahermitian
function be of use forstdlib_linalg
? It is more sugar-coating than anything but could still be useful to reduce a bit code bloat.(ping @perazz, @jvdp1, @jalvesz)
Prior Art
A'
is equivalent toA
is annp.matrix
object, thenA.H
returns the hermitian as well.conj(transpose(A))
ortranspose(conj(A))
.Additional Information
No response
The text was updated successfully, but these errors were encountered: