| 795 | |
| 796 | |
| 797 | inline ZMatrix IntToZMatrix(IntMatrix const &m) |
| 798 | { |
| 799 | ZMatrix ret(m.getHeight(),m.getWidth()); |
| 800 | for(int i=0;i<m.getHeight();i++)ret[i]=IntToZVector(m[i]); |
| 801 | return ret; |
| 802 | } |
| 803 | |
| 804 | inline QMatrix canonicalizeSubspace(QMatrix const &m) |
| 805 | { |
no test coverage detected