using System; using System.Collections.Generic; using System.Linq; using System.Text; using L = Science.Mathematics.LinearAlgebra; namespace Strang3Ed.Chapter06.Section3 { public class Example04 { public Example04() { } private string result; public string Result { get{return result;} } public void Compute() { double[,] x = { {-8.0, 10.0}, {-8.0, -8.0}}; L.Matrix P = new L.Matrix(x); L.FactorizationAeqSLSi obj = new L.FactorizationAeqSLSi(P); obj.Compute(); result += obj.Eigenvectors.ToString() + "\r\n"; result += obj.Eigenvalues.ToString() + "\r\n"; } } } /* 1.11803398874989 1.11803398874989 0 +I 1 0 -I 1 -8 +I 8.94427190999916 0 0 -8 -I 8.94427190999916 */