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