Closed frithnanth closed 6 years ago
Jay, I have a user :)
Indeed, embarrassingly enough this was just a leftover debug output from the rewrite of the submatrix function, removed now in 091be42ca95644c84cf701de05915b7854750add
btw you know: I plan move to this and call it than math::matrix::bundle to include vector, eigensystems and others
Just to let you know: I'm writing an interface to the libfftw3 C library to do Fast Fourier Transforms and I wanted to see if it could take a Math::Matrix object as an input.
It works as long as a user feeds a $matrix.list-rows.flat
to it, that is as long as it's not a Math::Matrix object anymore :-)
I know, it's not a proper interface to your module, but I guess it's the best I can do without declaring an explicit dependency.
Thank for your work!
Thanks, just tell me if you need something.
Now Math::FFT::Libfftw3 accepts a Math::Matrix object; no need to add .list-rows.flat
anymore.
thanks in https://modules.perl6.org/dist/Math::FFT::Libfftw3:cpan:FRITH/lib/Math for the :$data! where .^name eq 'Math::Matrix', hack that resolves a lot of issues I was pondering
I'm trying to install Math::Matrix using Perl 6 2018.09 and zef is reporting a test failure. The failing test is
t/021-accessors.t
and the output is:Apparently the test is perfectly OK, but its output can't be parsed correctly because for those "-1". Probably this is a problem in the Test module that comes with Perl 6 2018.09, but since I don't know your module's inner workings I'm asking if there's any reason why a
.new
method should output a -1 before failing.