QR decomposition: Difference between revisions

Content added Content deleted
(+Stata)
Line 2,256: Line 2,256:


=={{header|Stata}}==
=={{header|Stata}}==
See [http://www.stata.com/help.cgi?mf_qrd QR decomposition] in Stata help.

<lang stata>mata
<lang stata>mata
: qrd(a=(12,-51,4\6,167,-68\-4,24,-41),q=.,r=.)
: qrd(a=(12,-51,4\6,167,-68\-4,24,-41),q=.,r=.)
Line 2,282: Line 2,284:
3 | 0 0 -35 |
3 | 0 0 -35 |
+----------------------+</lang>
+----------------------+</lang>

=={{header|Tcl}}==
=={{header|Tcl}}==
Assuming the presence of the Tcl solutions to these tasks: [[Element-wise operations]], [[Matrix multiplication]], [[Matrix transposition]]
Assuming the presence of the Tcl solutions to these tasks: [[Element-wise operations]], [[Matrix multiplication]], [[Matrix transposition]]