diff options
Diffstat (limited to 'src/algebra/matfuns.spad.pamphlet')
-rw-r--r-- | src/algebra/matfuns.spad.pamphlet | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/algebra/matfuns.spad.pamphlet b/src/algebra/matfuns.spad.pamphlet index 23617e39..47cc96e3 100644 --- a/src/algebra/matfuns.spad.pamphlet +++ b/src/algebra/matfuns.spad.pamphlet @@ -737,7 +737,7 @@ MatrixLinearAlgebraFunctions(R,Row,Col,M):Exports == Implementation where un := unitNormal qelt(x,i,j) qsetelt!(x,i,j,un.canonical) - if un.associate ~= 1 then for jj in (j+1)..maxC repeat + if not one?(un.associate) then for jj in (j+1)..maxC repeat qsetelt!(x,i,jj,un.associate * qelt(x,i,jj)) xij := qelt(x,i,j) |