Re: [Pdl-devel] PDL 2.049 released

2021-05-31 Thread Ed .
Well pointed-out! This is an artifact of PDL’s design of exporting lots of stuff, and especially having random libraries load functions into the “PDL” namespace. PDL::Complex should be considered deprecated, though I haven’t put that in the docs yet. When I was looking at the lu_backsub stuff,

Re: [Pdl-devel] PDL 2.049 released

2021-05-31 Thread Luis Mochan
One detail to be aware of: pdl> p i()->info PDL: CDouble D [] pdl> use PDL::Complex pdl> p i()->info PDL::Complex: Double D [2] Thus, the function i() is modified when loading PDL::Complex! Regards, Luis On Mon, May 31, 2021 at 11:20:47PM +, Ed . wrote: > Dear PDL folk

Re: [Pdl-devel] PDL 2.049 released

2021-05-31 Thread Luis Mochan
Congrats! Luis On Mon, May 31, 2021 at 11:20:47PM +, Ed . wrote: > Dear PDL folks, > > PDL 2.049 has just been released. Notable changes: > > Matrix stuff: > - MatrixOps::identity now preserves higher dims on multi-dim input > - MatrixOps::lu_decomp now preserves inplace flag on input > - Ma

[Pdl-devel] PDL 2.049 released

2021-05-31 Thread Ed .
Dear PDL folks, PDL 2.049 has just been released. Notable changes: Matrix stuff: - MatrixOps::identity now preserves higher dims on multi-dim input - MatrixOps::lu_decomp now preserves inplace flag on input - MatrixOps::lu_backsub now gets output dims right including inplace - thanks @wlmb for r