using System; using System.Collections.Generic; using System.Linq; using System.Text; using L = Science.Mathematics.LinearAlgebra; namespace Strang3Ed.Chapter06.Section3 { public class Example03 { public Example03() { } private string result; public string Result { get { return result; } } public void Compute() { double[,] x = { {0.0, 1.0}, {-3.0, -4.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"; } } } /* 0.447213595499958 -0.559016994374947 -0.447213595499958 1.67705098312484 -1 0 0 -3 */