using System; using System.Collections.Generic; using System.Linq; using System.Text; using V = Science.Mathematics.VectorCalculus; namespace VectorCalculus5Ed.Chapter1.Section1 { public class Example02 { public Example02() { } private string result; public string Result { get{return result;} } public void Compute() { V.Vector v = new V.Vector(3); v[0] = 1.0; v[1] = 1.0; v[2] = 1.0; result += (6.0*v).ToString(); } } } // (6,6,6)