#12103: Use MeatAxe as an optional back end for dense matrices over `GF(p^n)`, p
odd, n>1, `p^n<255`
------------------------------+---------------------------------------------
Reporter: SimonKing | Owner: jason, was
Type: defect | Status: needs_review
Priority: major | Milestone: sage-4.8
Component: linear algebra | Keywords: linear algebra, MeatAxe
Work_issues: | Upstream: None of the above - read trac
for reasoning.
Reviewer: | Author: Simon King
Merged: | Dependencies: #9562 #4260
------------------------------+---------------------------------------------
Comment(by SimonKing):
I have updated both patches, because I wanted to add one method:
`matrix_from_rows`. One could rely on the generic implementation, but in
some application I need this to be fast:
{{{
sage: MS = MatrixSpace(GF(5^3,'y'),3,2)
sage: A = MS(range(6))
sage: A
[0 1]
[2 3]
[4 0]
sage: A.matrix_from_rows([2,1])
[4 0]
[2 3]
sage: A.matrix_from_rows([1,1])
[2 3]
[2 3]
}}}
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/12103#comment:2>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.