using System; using System.Collections.Generic; using System.Linq; using System.Text; using L = Science.Mathematics.LinearAlgebra; namespace Strang3Ed.Chapter03.Section2 { public class ExampleA { public ExampleA() { } private string result; public string Result { get { return result; } } public void Compute() { double[,] a = { { 1.0, 3.0, 0.0, 2.0}, { 0.0, 0.0, 1.0, 6.0}, { 0.0, 0.0, 0.0, 0.0}}; L.Matrix C = new L.Matrix(a); L.Nullspace obj = new L.Nullspace(C); L.Matrix nm = obj.NullspaceMatrix; result += nm.ToString(); } } } /* -3 -2 1 0 0 -6 0 1 */