using System; using System.Collections.Generic; using System.Linq; using System.Text; using L = Science.Mathematics.LinearAlgebra; namespace Strang3Ed.Chapter02.Section5 { public class Example03 { public Example03() { } private string result; public string Result { get { return result; } } public void Compute() { double[,] x = {{1.0,0.0,0.0}, {-5.0,1.0,0.0}, {0.0,0.0,1.0}}; L.Matrix E = new L.Matrix(x); L.Matrix Ei = E.Inverse; double[,] y = {{1.0,0.0,0.0}, {0.0,1.0,0.0}, {0.0,-4.0,1.0}}; L.Matrix F = new L.Matrix(y); L.Matrix Fi = F.Inverse; L.Matrix FE = F * E; result += FE.ToString() ; L.Matrix EiFi = Ei * Fi; result += EiFi.ToString(); } } } /* 1 0 0 -5 1 0 20 -4 1 1 0 0 5 1 0 0 4 1 */