using System; using System.Collections.Generic; using System.Linq; using System.Text; using L = Science.Mathematics.LinearAlgebra; namespace Strang3Ed.Chapter05.Section2 { public class Example04 { public Example04() { } private string result; public string Result { get{return result;} } public void Compute() { double a = 2.0, b = 3.0, c = 12.0, d = 6.0; double[,] x = {{1.0,0.0,a,0.0}, {0.0,1.0,b,0.0}, {0.0,0.0,c,0.0}, {0.0,0.0,d,1.0}}; L.Matrix A = new L.Matrix(x); result += A.Determinant.ToString(); } } } /* 12 */