using System; using System.Collections.Generic; using System.Linq; using System.Text; using L = Science.Mathematics.LinearAlgebra; namespace Strang3Ed.Chapter03.Section1 { public class Example02 { public Example02() { } private string result; public string Result { get { return result; } } public void Compute() { L.Vector a = new L.Vector(2); a[0] = 2.0; a[1] = 3.0; L.Vector b = new L.Vector(2); b[0] = -3.0; b[1] = -2.0; result += (a+b).ToString(); } } } /* -1 1 */