using System; using System.Collections.Generic; using System.Linq; using System.Text; using L = Science.Mathematics.LinearAlgebra; namespace Strang3Ed.Chapter03.Section5 { public class ExampleB { public ExampleB() { } private string result; public string Result { get { return result; } } public void Compute() { double[,] x = { { 1.0, 1.0, 0.0}, { 1.0, 2.0, 1.0}, { 0.0, 1.0, 1.0}}; L.Matrix A = new L.Matrix(x); L.Nullspace N = new L.Nullspace(A); foreach (L.Vector v in N.Basis) result += v.ToString() + "\r\n"; } } } /* 1 -1 1 */