using System; using System.Collections.Generic; using System.Linq; using System.Text; using L = Science.Mathematics.LinearAlgebra; namespace Strang3Ed.Chapter05.Section3 { public class Example05 { public Example05() { } private string result; public string Result { get { return result; } } public void Compute() { double[,] x = {{0.0,1.0,3.0}, {1.0,0.0,1.0}, {2.0,1.0,0.0}}; L.Matrix A = new L.Matrix(x); result += A.Inverse.ToString() + "\r\n"; } } } /* -0.2 0.6 0.2 0.4 -1.2 0.6 0.2 0.4 -0.2 */