Matrix transposition: Difference between revisions

→‎TI-83 BASIC: add TI-89, alphabetize
(→‎TI-83 BASIC: add TI-89, alphabetize)
Line 650:
<lang scheme>(define (transpose m)
(apply map list m))</lang>
 
=={{header|TI-83 BASIC}}==
Assuming the original matrix is in <tt>[A]</tt>, place its transpose in <tt>[B]</tt>:
[A]<sup>T</sup>->[B]
The <sup>T</sup> operator can be found in the matrix math menu.
 
=={{header|Tcl}}==
Line 732 ⟶ 727:
</pre>
 
=={{header|TI-83 BASIC}}, {{header|TI-89 BASIC}}==
TI-83: Assuming the original matrix is in <tt>[A]</tt>, place its transpose in <tt>[B]</tt>:
[A]<sup>T</sup>->[B]
The <sup>T</sup> operator can be found in the matrix math menu.
 
TI-89: The same except that matrix variables do not have special names:
 
A<sup>T</sup> &rarr; B
 
=={{header|Ursala}}==