Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add action on matrices in row reduced echelon form #4311

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

ThomasBreuer
Copy link
Member

This implements the action of a matrix group on subspaces of its natural module.

This implements the action of a matrix group on subspaces
of its natural module.
```
"""
function on_rref_mats(m::MatElem{T}, x::MatrixGroupElem) where T <: FinFieldElem
return rref(m * x)[2]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return rref(m * x)[2]
return echelon_form(m * x)

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is the same, but since we have echelon_form, we might as well make use of it.

Call `echelon_form` instead of `rref`,
rename the function accordingly.
(Also `echelon_form` cannot be referenced via `@ref`.)
(`rref` and `echelon_form` have different output ...)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants