Home Online Manual
Top
Back: ivmatSet
Forward: ivmatGaussian
FastBack:
FastForward:
Up: rootisolation_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

D.15.30.6 unitMatrix

Procedure from library rootisolation.lib (see rootisolation_lib).

Usage:
unitMatrix(n); n int

Return:
nxn unit interval matrix

Example:
 
LIB "rootisolation.lib";
ring R = 0,(x,y),dp;
unitMatrix(2);
==> [1, 1],[0, 0]
==> [0, 0],[1, 1]
==> 
unitMatrix(3);
==> [1, 1],[0, 0],[0, 0]
==> [0, 0],[1, 1],[0, 0]
==> [0, 0],[0, 0],[1, 1]
==>