Top
Back: source
Forward: freeModule2Module
FastBack:
FastForward:
Up: modules_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

D.4.17.31 compareMatrix

Procedure from library modules.lib (see modules_lib).

Usage:
compareMatrix(M,N); or M==N; compares two Matrices

Return:
1 or 0, if the are the same or aren't

Example:
 
LIB "modules.lib";
ring r;
matrix ma[2][2]=x,y,x,y;
Matrix M=ma;
matrix na[2][1]=-y,x;
Matrix N=na;
M;
==>     {1} {1}
==> {0}   x   y
==> {0}   x   y
==> 
N;
==>      {1}
==> {0}   -y
==> {0}    x
==> 
N==M;
==> 0
M==M;
==> 1


Top Back: source Forward: freeModule2Module FastBack: FastForward: Up: modules_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.