Top
Back: admissibleSub
Forward: appendWeight2Ord
FastBack:
FastForward:
Up: ncpreim_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document
7.5.19.0. isUpperTriangular
Procedure from library ncpreim.lib (see ncpreim_lib).

Usage:
isUpperTriangular(M[,k]); M a matrix, k an optional int

Return:
int, 1 if the given matrix is upper triangular,
0 otherwise.

Note:
If k<>0 is given, it is checked whether M is strictly upper triangular.

Example:
 
LIB "ncpreim.lib";
ring r = 0,x,dp;
matrix M[2][3] =
0,1,2,
0,0,3;
isUpperTriangular(M);
==> 1
isUpperTriangular(M,1);
==> 1
M[2,2] = 4;
isUpperTriangular(M);
==> 1
isUpperTriangular(M,1);
==> 0


Top Back: admissibleSub Forward: appendWeight2Ord FastBack: FastForward: Up: ncpreim_lib Top: Singular Manual Contents: Table of Contents Index: Index About: About this document
            User manual for Singular version 4.3.2, 2023, generated by texi2html.