// // Math.NET Numerics, part of the Math.NET Project // http://numerics.mathdotnet.com // http://github.com/mathnet/mathnet-numerics // http://mathnetnumerics.codeplex.com // // Copyright (c) 2009-2013 Math.NET // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation // files (the "Software"), to deal in the Software without // restriction, including without limitation the rights to use, // copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following // conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR // OTHER DEALINGS IN THE SOFTWARE. // using System.Collections.Generic; using MathNet.Numerics.Distributions; using MathNet.Numerics.LinearAlgebra; using MathNet.Numerics.LinearAlgebra.Complex; using MathNet.Numerics.Random; using NUnit.Framework; namespace MathNet.Numerics.UnitTests.LinearAlgebraTests.Complex { using System.Numerics; /// /// Base class for matrix tests. /// public abstract class MatrixLoader { /// /// Gets or sets test matrices values to use. /// protected Dictionary TestData2D { get; set; } /// /// Gets or sets test matrices instances to use. /// protected Dictionary> TestMatrices { get; set; } /// /// Creates a matrix for the given number of rows and columns. /// /// The number of rows. /// The number of columns. /// A matrix with the given dimensions. protected abstract Matrix CreateMatrix(int rows, int columns); /// /// Creates a matrix from a 2D array. /// /// The 2D array to create this matrix from. /// A matrix with the given values. protected abstract Matrix CreateMatrix(Complex[,] data); /// /// Creates a vector of the given size. /// /// The size of the vector to create. /// /// The new vector. protected abstract Vector CreateVector(int size); /// /// Creates a vector from an array. /// /// The array to create this vector from. /// The new vector. protected abstract Vector CreateVector(Complex[] data); /// /// Setup test matrices. /// [SetUp] public virtual void SetupMatrices() { TestData2D = new Dictionary { {"Singular3x3", new[,] {{new Complex(1.0, 1), new Complex(1.0, 1), new Complex(2.0, 1)}, {new Complex(1.0, 1), new Complex(1.0, 1), new Complex(2.0, 1)}, {new Complex(1.0, 1), new Complex(1.0, 1), new Complex(2.0, 1)}}}, {"Square3x3", new[,] {{new Complex(-1.1, 1), new Complex(-2.2, 1), new Complex(-3.3, 1)}, {Complex.Zero, new Complex(1.1, 1), new Complex(2.2, 1)}, {new Complex(-4.4, 1), new Complex(5.5, 1), new Complex(6.6, 1)}}}, {"Square4x4", new[,] {{new Complex(-1.1, 1), new Complex(-2.2, 1), new Complex(-3.3, 1), new Complex(-4.4, 1)}, {Complex.Zero, new Complex(1.1, 1), new Complex(2.2, 1), new Complex(3.3, 1)}, {new Complex(1.0, 1), new Complex(2.1, 1), new Complex(6.2, 1), new Complex(4.3, 1)}, {new Complex(-4.4, 1), new Complex(5.5, 1), new Complex(6.6, 1), new Complex(-7.7, 1)}}}, {"Singular4x4", new[,] {{new Complex(-1.1, 1), new Complex(-2.2, 1), new Complex(-3.3, 1), new Complex(-4.4, 1)}, {new Complex(-1.1, 1), new Complex(-2.2, 1), new Complex(-3.3, 1), new Complex(-4.4, 1)}, {new Complex(-1.1, 1), new Complex(-2.2, 1), new Complex(-3.3, 1), new Complex(-4.4, 1)}, {new Complex(-1.1, 1), new Complex(-2.2, 1), new Complex(-3.3, 1), new Complex(-4.4, 1)}}}, {"Tall3x2", new[,] {{new Complex(-1.1, 1), new Complex(-2.2, 1)}, {Complex.Zero, new Complex(1.1, 1)}, {new Complex(-4.4, 1), new Complex(5.5, 1)}}}, {"Wide2x3", new[,] {{new Complex(-1.1, 1), new Complex(-2.2, 1), new Complex(-3.3, 1)}, {Complex.Zero, new Complex(1.1, 1), new Complex(2.2, 1)}}}, {"Symmetric3x3", new[,] {{Complex.One, 2.0, 3.0}, {2.0, 2.0, 0.0}, {3.0, 0.0, 3.0}}} }; TestMatrices = new Dictionary>(); foreach (var name in TestData2D.Keys) { TestMatrices.Add(name, CreateMatrix(TestData2D[name])); } } public static Matrix GenerateRandomDenseMatrix(int row, int col) { return DenseMatrix.CreateRandom(row, col, new Normal(new MersenneTwister(1))); } public static Matrix GenerateRandomPositiveDefiniteHermitianDenseMatrix(int order) { var a = DenseMatrix.CreateRandom(order, order, new Normal(new MersenneTwister(1))); return a.ConjugateTranspose()*a; } public static Vector GenerateRandomDenseVector(int order) { return DenseVector.CreateRandom(order, new Normal(new MersenneTwister(1))); } public static Matrix GenerateRandomUserDefinedMatrix(int row, int col) { return new UserDefinedMatrix(GenerateRandomDenseMatrix(row, col).ToArray()); } public static Matrix GenerateRandomPositiveDefiniteHermitianUserDefinedMatrix(int order) { return new UserDefinedMatrix(GenerateRandomPositiveDefiniteHermitianDenseMatrix(order).ToArray()); } public static Vector GenerateRandomUserDefinedVector(int order) { return new UserDefinedVector(GenerateRandomDenseVector(order).ToArray()); } } }