using System; using System.Collections.Generic; using System.Linq; using System.Text; using L = Science.Mathematics.LinearAlgebra; namespace Strang3Ed.Chapter06.Section1 { public class Example01 { public Example01() { } private string result; public string Result { get{return result;} } public void Compute() { double[,] x = { {0.5, 0.5}, {0.5, 0.5}}; L.MarkovMatrix A = new L.MarkovMatrix(x); A.Diagonalize(); result += A.EigenvalueComplex[0].ToString() + "\r\n"; result += A.EigenvectorComplex[0].ToString() + "\r\n"; result += A.EigenvalueComplex[1].ToString() + "\r\n"; result += A.EigenvectorComplex[1].ToString() + "\r\n"; } } } /* 1 0.707106781186547 0.707106781186547 0 -0.707106781186547 0.707106781186547 */