using System; using System.Collections.Generic; using System.Linq; using System.Text; using L = Science.Mathematics.LinearAlgebra; namespace Strang3Ed.Chapter02.Section7 { public class Example02 { public Example02() { } private string result; public string Result { get { return result; } } public void Compute() { double[,] x = {{1.0,2.0}, {2.0,5.0}}; L.Matrix A = new L.Matrix(x); L.Matrix Ai = A.Inverse; result += Ai.ToString(); L.Matrix At = A.Transpose; result += At.ToString(); } } } /* 5 -2 -2 1 1 2 2 5 */