Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
linalg[ihermite] - integer-only Hermite Normal Form
Calling Sequence
ihermite(A)
ihermite(A, U)
Parameters
A
-
rectangular matrix of integers
U
name
Description
Important: The linalg package has been deprecated. Use the superseding packages, LinearAlgebra and VectorCalculus, instead.
- For information on migrating linalg code to the new packages, see examples/LinearAlgebraMigration.
The function ihermite computes the Hermite Normal Form (reduced row echelon form) of a rectangular matrix of integers.
The Hermite normal form of A is an upper triangular matrix H with rank(A) = the number of nonzero rows of H. If A is an n by n matrix of full rank then .
This is not an efficient method for computing the rank or determinant except that this may yield a partial factorization of without doing any explicit factorizations.
The Hermite normal form is obtained by doing elementary row operations. This includes interchanging rows, multiplying through a row by -1, and adding an integral multiple of one row to another.
One can use transposes to obtain column form of the Hermite Normal Form.
In the case of two arguments, the second argument U will be assigned the transformation matrix on output, such that the following holds: ihermite(A) = U A.
The command with(linalg,ihermite) allows the use of the abbreviated form of this command.
Examples
To obtain column form of Hermite Normal Form
See Also
linalg(deprecated)[det], linalg(deprecated)[hermite], linalg(deprecated)[ismith], linalg(deprecated)[rank], LinearAlgebra, LinearAlgebra[HermiteForm]
Download Help Document