using System; using System.Collections.Generic; using System.Linq; using System.Text; using V = Science.Mathematics.VectorCalculus; namespace VectorCalculus5Ed.Chapter1.Section5 { public class Example03 { public Example03() { } private string result; public string Result { get{return result;} } public void Compute() { V.Matrix A = new V.Matrix(3, 3); A[0, 0] = 1.0; A[0, 1] = -1.0; A[0, 2] = 2.0; A[1, 0] = 0.0; A[1, 1] = 1.0; A[1, 2] = 5.0; A[2, 0] = 1.0; A[2, 1] = 0.0; A[2, 2] = 3.0; V.Matrix C = 3.0 * A; result += C.ToString(); } } } /* 3 -3 6 0 3 15 3 0 9 */