using System; using System.Collections.Generic; using System.Linq; using System.Text; using L = Science.Mathematics.LinearAlgebra; namespace Strang3Ed.Chapter02.Section5 { public class Example01 { public Example01() { } private string result; public string Result { get{return result;} } public void Compute() { double[,] x = {{1.0,2.0}, {1.0,2.0}}; L.Matrix A = new L.Matrix(x); L.Vector b = new L.Vector(2); b[0] = 0.0; b[1] = 0.0; L.LinearEquationGeneral eq = new L.LinearEquationGeneral(A, b); eq.Solve(); result += eq.SpecialSolution.ToString(); } } } /* -2 1 */