pierre-vigier

Results 18 comments of pierre-vigier

No worries, just let me know when you have time

Do you need anything from my side to switch the repo?

I have planned to use native shaped array, however, i still encounter some issues with non implemented parts of native arrays, you can see the code there: https://github.com/pierre-vigier/Perl6-Math-Matrix/tree/shaped-array Not finished...

I guess the first think would be to assess if the "glitches" i was seeing then are now solved on new version of perl6. As stated above, my first idea...

When trying to access element on shaped array with syntax @a[1][1], program was crashing, as of today, it is still not implemented. However, @a[1;1] . But more to the point,...

A few hours ago, however, not the latest version of perl6, but still not too old: This is Rakudo version 2018.01-100-g156876dbf built on MoarVM version 2018.01-77-g9a029b408 implementing Perl 6.c.

On moar 2018.08 , we still have the same "issue": ```perl6 > my int @a[2,2] = (1,2),(3,4); [[1 2] [3 4]] > say @a[1][1]; Partially dimensioned views of shaped arrays...

How would you do that? role composition for specific function? like Matrix::Triangular to overwrite some behaviour? not sure to get how the split would work, but indeed, the class is...

The only problem i have with that is, vector is one dimension, how to know if it is to be used as a Row vector or a column vector?

I copied it from wikipedia https://en.wikipedia.org/wiki/Crout_matrix_decomposition On Fri, Jan 29, 2016 at 5:38 PM Herbert Breunung [email protected] wrote: > i asked my prof, the algorithm you implemented is wrong he...