MCPcopy Create free account
hub / github.com/Singular/Singular / ipPrint_INTMAT

Function ipPrint_INTMAT

Singular/ipprint.cc:40–52  ·  view source on GitHub ↗

2 * print for: intmat */

Source from the content-addressed store, hash-verified

38* print for: intmat
39*/
40static BOOLEAN ipPrint_INTMAT(intvec* v)
41{
42 int i,j;
43 for(i=0;i<v->rows();i++)
44 {
45 for(j=0;j<v->cols();j++)
46 {
47 Print(" %5d",IMATELEM(*v,i+1,j+1));
48 }
49 PrintLn();
50 }
51 return FALSE;
52}
53
54/*2
55* internal print for: matrix

Callers 1

jjPRINTFunction · 0.85

Calls 4

rowsMethod · 0.80
colsMethod · 0.80
PrintFunction · 0.50
PrintLnFunction · 0.50

Tested by

no test coverage detected