Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Tests/HeuristicLab.Analysis-3.3/MultidimensionalScalingTest.cs @ 7259

Last change on this file since 7259 was 7259, checked in by swagner, 12 years ago

Updated year of copyrights to 2012 (#1716)

File size: 6.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Globalization;
24using HeuristicLab.Data;
25using Microsoft.VisualStudio.TestTools.UnitTesting;
26
27namespace HeuristicLab.Analysis.Tests {
28  [TestClass]
29  public class MultidimensionalScalingTest {
30    [TestMethod]
31    public void TestGoodnessOfFit() {
32      double stress;
33      DoubleMatrix distances3 = new DoubleMatrix(3, 3);
34      // Example 1: A right triangle
35      distances3[0, 1] = distances3[1, 0] = 3;
36      distances3[0, 2] = distances3[2, 0] = 4;
37      distances3[1, 2] = distances3[2, 1] = 5;
38      stress = MultidimensionalScaling.CalculateNormalizedStress(distances3,
39        MultidimensionalScaling.KruskalShepard(distances3));
40      Assert.IsTrue(stress < 0.1);
41      // Example 2: An arbitrary triangle
42      distances3[0, 1] = distances3[1, 0] = 8;
43      distances3[0, 2] = distances3[2, 0] = 6.4;
44      distances3[1, 2] = distances3[2, 1] = 5;
45      DoubleMatrix coords3 = MultidimensionalScaling.KruskalShepard(distances3);
46      Console.WriteLine("Coordinates: ");
47      Console.WriteLine("A = ({0}, {1}), B = ({2}, {3}), C = ({4}, {5})", coords3[0, 0], coords3[0, 1], coords3[1, 0], coords3[1, 1], coords3[2, 0], coords3[2, 1]);
48      stress = MultidimensionalScaling.CalculateNormalizedStress(distances3, coords3);
49      Console.WriteLine("Stress = " + stress.ToString(CultureInfo.InvariantCulture.NumberFormat));
50      Assert.IsTrue(stress < 0.1);
51      DoubleMatrix distances4 = new DoubleMatrix(4, 4);
52      // Example 3: A small square
53      distances4[0, 1] = distances4[1, 0] = 1;
54      distances4[0, 2] = distances4[2, 0] = Math.Sqrt(2);
55      distances4[0, 3] = distances4[3, 0] = 1;
56      distances4[1, 2] = distances4[2, 1] = 1;
57      distances4[1, 3] = distances4[3, 1] = Math.Sqrt(2);
58      distances4[2, 3] = distances4[3, 2] = 1;
59      stress = MultidimensionalScaling.CalculateNormalizedStress(distances4,
60        MultidimensionalScaling.KruskalShepard(distances4));
61      Assert.IsTrue(stress < 0.1);
62      // Example 4: A large square
63      distances4[0, 1] = distances4[1, 0] = 1000;
64      distances4[0, 2] = distances4[2, 0] = Math.Sqrt(2000000);
65      distances4[0, 3] = distances4[3, 0] = 1000;
66      distances4[1, 2] = distances4[2, 1] = 1000;
67      distances4[1, 3] = distances4[3, 1] = Math.Sqrt(2000000);
68      distances4[2, 3] = distances4[3, 2] = 1000;
69      stress = MultidimensionalScaling.CalculateNormalizedStress(distances4,
70        MultidimensionalScaling.KruskalShepard(distances4));
71      Assert.IsTrue(stress < 0.1);
72      // Example 5: An arbitrary cloud of 8 points in a plane
73      DoubleMatrix distancesK = GetDistances(new double[,] { { 2, 1 }, { 5, 2 }, { 7, 1 }, { 4, 0 }, { 3, 3 }, { 4, 2 }, { 1, 8 }, { 6, 3 } });
74      stress = MultidimensionalScaling.CalculateNormalizedStress(distancesK,
75        MultidimensionalScaling.KruskalShepard(distancesK));
76      Assert.IsTrue(stress < 0.1);
77      // Example 6: A tetrahedron
78      distancesK = GetDistances(new double[,] { { 0, 0, 0 }, { 4, 0, 0 }, { 2, 3.4641, 0 }, { 2, 1.1547, 3.2660 } });
79      stress = MultidimensionalScaling.CalculateNormalizedStress(distancesK,
80        MultidimensionalScaling.KruskalShepard(distancesK));
81      Assert.IsTrue(stress < 0.1);
82      // Example 7: A matrix of perceived dissimilarities between 14 colors, published in the literature
83      distancesK = new DoubleMatrix(new double[,] {
84{ 0.00, 0.14, 0.58, 0.58, 0.82, 0.94, 0.93, 0.96, 0.98, 0.93, 0.91, 0.88, 0.87, 0.84 },
85{ 0.14, 0.00, 0.50, 0.56, 0.78, 0.91, 0.93, 0.93, 0.98, 0.96, 0.93, 0.89, 0.87, 0.86 },
86{ 0.58, 0.50, 0.00, 0.19, 0.53, 0.83, 0.90, 0.92, 0.98, 0.99, 0.98, 0.99, 0.95, 0.97 },
87{ 0.58, 0.56, 0.19, 0.00, 0.46, 0.75, 0.90, 0.91, 0.98, 0.99, 1.00, 0.99, 0.98, 0.96 },
88{ 0.82, 0.78, 0.53, 0.46, 0.00, 0.39, 0.69, 0.74, 0.93, 0.98, 0.98, 0.99, 0.98, 1.00 },
89{ 0.94, 0.91, 0.83, 0.75, 0.39, 0.00, 0.38, 0.55, 0.86, 0.92, 0.98, 0.98, 0.98, 0.99 },
90{ 0.93, 0.93, 0.90, 0.90, 0.69, 0.38, 0.00, 0.27, 0.78, 0.86, 0.95, 0.98, 0.98, 1.00 },
91{ 0.96, 0.93, 0.92, 0.91, 0.74, 0.55, 0.27, 0.00, 0.67, 0.81, 0.96, 0.97, 0.98, 0.98 },
92{ 0.98, 0.98, 0.98, 0.98, 0.93, 0.86, 0.78, 0.67, 0.00, 0.42, 0.63, 0.73, 0.80, 0.77 },
93{ 0.93, 0.96, 0.99, 0.99, 0.98, 0.92, 0.86, 0.81, 0.42, 0.00, 0.26, 0.50, 0.59, 0.72 },
94{ 0.91, 0.93, 0.98, 1.00, 0.98, 0.98, 0.95, 0.96, 0.63, 0.26, 0.00, 0.24, 0.38, 0.45 },
95{ 0.88, 0.89, 0.99, 0.99, 0.99, 0.98, 0.98, 0.97, 0.73, 0.50, 0.24, 0.00, 0.15, 0.32 },
96{ 0.87, 0.87, 0.95, 0.98, 0.98, 0.98, 0.98, 0.98, 0.80, 0.59, 0.38, 0.15, 0.00, 0.24 },
97{ 0.84, 0.86, 0.97, 0.96, 1.00, 0.99, 1.00, 0.98, 0.77, 0.72, 0.45, 0.32, 0.24, 0.00 }});
98      stress = MultidimensionalScaling.CalculateNormalizedStress(distancesK,
99        MultidimensionalScaling.KruskalShepard(distancesK));
100      Assert.IsTrue(stress < 0.1);
101    }
102
103    internal DoubleMatrix GetDistances(double[,] coordinates) {
104      int dimension = coordinates.GetLength(0);
105      DoubleMatrix distances = new DoubleMatrix(dimension, dimension);
106      for (int i = 0; i < dimension - 1; i++)
107        for (int j = i + 1; j < dimension; j++) {
108          double sum = 0;
109          for (int k = 0; k < coordinates.GetLength(1); k++)
110            sum += (coordinates[i, k] - coordinates[j, k]) * (coordinates[i, k] - coordinates[j, k]);
111          distances[i, j] = distances[j, i] = Math.Sqrt(sum);
112        }
113      return distances;
114    }
115  }
116}
Note: See TracBrowser for help on using the repository browser.