Matrix transposition: Difference between revisions

Content added Content deleted
(→‎TI-83 BASIC: add TI-89, alphabetize)
Line 650: Line 650:
<lang scheme>(define (transpose m)
<lang scheme>(define (transpose m)
(apply map list m))</lang>
(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}}==
=={{header|Tcl}}==
Line 732: Line 727:
</pre>
</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}}==
=={{header|Ursala}}==