Changeset 40e810d in git
- Timestamp:
- Jul 22, 2010, 10:43:40 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 587f72ea2194532a90e0b34af68040f12a9fbfd5
- Parents:
- 6a07ebc345b4d288003fb8b5928acd85f2815aca
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/jacobson.lib
r6a07eb r40e810d 40 40 divideUnits(L); create ones out of units in the output of smith or jacobson 41 41 42 43 42 SEE ALSO: control_lib 43 44 KEYWORDS: Jacobson form; Jacobson normal form; Smith form; Smith normal form; matrix diagonalization; 45 44 46 "; 45 47 … … 1137 1139 1138 1140 // things blow up 1139 matrix m[3][4] = s,x^2*s,x^3*s,s*x^2,s*x+1,(x+1)^3, (x+s)^2, x*s; 1141 matrix m[2][3] = s,x^2*s,x^3*s,s*x^2,s*x+1,(x+1)^3; 1142 matrix m[2][3] = s,x^2*s,x^3*s,s*x^2,s*x+1,(x+s)^2; // variation 1143 matrix m[2][4] = s,x^2*s,x^3*s,s*x^2,s*x+1,(x+1)^3, (x+s)^2, x*s; // bug! 1144 matrix m[3][4] = s,x^2*s,x^3*s,s*x^2,s*x+1,(x+1)^3, (x+s)^2, x*s; // here the last row contains zeros 1140 1145 1141 1146 // this one is quite nasty and time consumig
Note: See TracChangeset
for help on using the changeset viewer.