Difference between revisions of "ApCoCoA-1:IML.REF"

From ApCoCoAWiki
(Initial version)
 
(Corrected XML)
Line 60: Line 60:
 
     <key>iml</key>
 
     <key>iml</key>
 
     <key>ref</key>
 
     <key>ref</key>
     <wiki-category>Package_LinBox</wiki-category>
+
     <wiki-category>Package_IML</wiki-category>
 
</command>
 
</command>

Revision as of 15:45, 13 November 2008

IML.REF

compute row echelon form

Syntax

IML.REF(M:MAT, CompRREF:BOOL):MAT
IML.REF(M:MAT, P:INT, CompRREF:BOOL):MAT

Description

This function allows you to compute a (reduced) row echelon form of M over a finite field. If you want to use the first version without the parameter P, the components of the input matrix M must be of type ZMOD and your current working ring must be the same ring over which M has been defined. The second version of this function lets you compute a (reduced) row echelon form of M mod P and the components of M must be of type INT.

The parameter CompRREF lets you specify if you want to compute a row echelon form or the reduced row echelon form of M. If CompRREF is set to TRUE, the reduced row echelon form will be computed, and if it is set to FALSE, a row echelon form where all pivot elements are equal to one will be computed.

The return value of both functions is the computed (reduced) row echelon form of M.

Example

Use Z/(239)[x];
M := Mat([[1, 2, 3], [4, 5, 6], [7, 8, 9], [11, 12, 13]]);
M;
IML.REF(M, FALSE);
Mat([
  [1, 2, 3],
  [4, 5, 6],
  [7, 8, 9],
  [11, 12, 13]
])
-------------------------------
Mat([
  [1 % 239, 2 % 239, 3 % 239],
  [0 % 239, 1 % 239, 2 % 239],
  [0 % 239, 0 % 239, 0 % 239],
  [0 % 239, 0 % 239, 0 % 239]
])
-------------------------------

Use Q[x,y];
M := Mat([[ 1, 1, 2], [200, 3000, 1], [2, 5, 17], [1, 1, 1]]);
M;
IML.REF(M, 17, TRUE);
Mat([
  [1, 1, 2],
  [200, 3000, 1],
  [2, 5, 17],
  [1, 1, 1]
])
-------------------------------
Mat([
  [1, 0, 0],
  [0, 1, 0],
  [0, 0, 1],
  [0, 0, 0]
])
-------------------------------

LinBox.REF

LinearAlgebra.REF