You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Gilles (JIRA)" <ji...@apache.org> on 2016/05/29 23:12:12 UTC

[jira] [Resolved] (MATH-1075) Implementation of a "Reduced row echelon form" for FieldMatrix

     [ https://issues.apache.org/jira/browse/MATH-1075?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Gilles resolved MATH-1075.
--------------------------
    Resolution: Incomplete

Old issue, missing doc and unit tests.

> Implementation of a "Reduced row echelon form" for FieldMatrix<T> 
> ------------------------------------------------------------------
>
>                 Key: MATH-1075
>                 URL: https://issues.apache.org/jira/browse/MATH-1075
>             Project: Commons Math
>          Issue Type: Improvement
>            Reporter: Axel Kramer
>            Priority: Minor
>         Attachments: FieldReducedRowEchelonForm.java
>
>
> Matrix class that wraps a  FieldMatrix<T> matrix, which should be transformed to reduced row echelon format.
> See: http://en.wikipedia.org/wiki/Row_echelon_form
> Example:
> RowReduce({{2, 0, -1, 0, 0},{1, 0, 0, -1, 0},{3, 0, 0, -2, -1},{0, 1, 0, 0, -2},{0, 1, -1, 0, 0}}) 
> gives:
> {{1,0,0,0,-1},
>  {0,1,0,0,-2},
>  {0,0,1,0,-2},
>  {0,0,0,1,-1},
>  {0,0,0,0,0}}
> Related to this issue:
> https://bitbucket.org/axelclk/symja_android_library/issue/25



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)