using System; using System.Collections.Generic; using System.Linq; using System.Text; using L = Science.Mathematics.LinearAlgebra; namespace Strang3Ed.Chapter05.Section3 { public class ExampleB { public ExampleB() { } private string result; public string Result { get { return result; } } public void Compute() { double[,] x = {{1.0,4.0,7.0}, {2.0,3.0,9.0}, {2.0,2.0,8.0}}; L.Matrix A = new L.Matrix(x); result += A.Rank.ToString() + "\r\n"; double[,] y = {{1.0,1.0,2.0}, {1.0,1.0,1.0}, {1.0,1.0,1.0}}; L.Matrix B = new L.Matrix(y); result += B.Rank.ToString() + "\r\n"; } } } /* 2 2 */