Matrix Transpose - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html) +--- Forum: HP Prime (/forum-5.html) +--- Thread: Matrix Transpose (/thread-852.html) |
Matrix Transpose - DrD - 03-08-2014 04:21 PM For a matrix RANDMAT(M1,rows,cols), the transpose of M1 could be expressed as: transpose(RANDMAT(M1,rows,cols)). Unless defined otherwise, the default value of T is 0, and so M1^T gets M1^0, returning the identity matrix, (good). Courses in linear algebra often use M1^T to express the transpose of a matrix. This nice shorthand is more convenient. Is there any inbuilt way to do that? -Dale- RE: Matrix Transpose - parisse - 03-08-2014 05:14 PM I have added in Xcas parser ^* for the transconjugate, this could certainly be added to the HP parser at least in the CAS. |