h.herm

来自「强大的数学工具包」· HERM 代码 · 共 38 行

HERM
38
字号
                                * * * * * * *                                *    herm   *                                * * * * * * *        "Hermite normal form"        SYNTAX: X = herm(A, np)        A is a regular square matrix over Z.        np is 1 or -1.        X is assigned the Hermite normal form of A.        If np =  1, all entries below the diagonal are >= 0,        if np = -1, all entries below the diagonal are <= 0,        Example 1: (correct)                herm({{1, 2} {0, 1}}, 1)        Example 2: (correct)                herm({{1, 2} {0, 1}}, -1)        Example 3: (incorrect)                herm({{1, x} {y, 1}}, 1)_ERR_NR_097        Example 4: (incorrect)                herm({{1, 0} {1, 0}}, -2)_ERR_NR_096

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?