LU decomposition: Difference between revisions

Content added Content deleted
m (→‎{{header|Ada}}: add "constant" to example matrices)
m (→‎{{header|Ada}}: correct the file names)
Line 183:
=={{header|Ada}}==
{{works with|Ada 2005}}
decomposedecomposition.ads:
<lang Ada>with Ada.Numerics.Generic_Real_Arrays;
generic
Line 194:
end Decomposition;</lang>
 
decomposedecomposition.adb:
<lang Ada>package body Decomposition is