Cholesky decomposition: Difference between revisions

Line 1,832:
=={{header|Lobster}}==
{{trans|Go}}
Translated from the Go Real version: This version works with real matrices, like most other solutions on the page. The representation is packed, however, storing only the lower triange of the input symetric matrix and the output lower matrix. The decomposition algorithm computes rows in order from top to bottom but is a little different than Cholesky–Banachiewicz.
<lang Lobster>import std
 
E
22

edits