Last change
on this file since 1249 was
817,
checked in by oriona, 6 years ago
|
MDS procedure replaced with weighted MDS procedure.
|
-
Property svn:eol-style set to
native
|
File size:
438 bytes
|
Rev | Line | |
---|
[349] | 1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
| 2 | // Copyright (C) 1999-2015 Maciej Komosinski and Szymon Ulatowski. |
---|
| 3 | // See LICENSE.txt for details. |
---|
| 4 | |
---|
[350] | 5 | #ifndef _MATRIX_TOOLS_H_ |
---|
| 6 | #define _MATRIX_TOOLS_H_ |
---|
[349] | 7 | |
---|
| 8 | #include <vector> |
---|
| 9 | #include "frams/util/3d.h" |
---|
| 10 | |
---|
| 11 | class MatrixTools |
---|
| 12 | { |
---|
| 13 | public: |
---|
[817] | 14 | static void weightedMDS(std::vector<double> &vdEigenvalues, int nSize, double *pDistances, Pt3D *&Coordinates, double *weights); |
---|
[349] | 15 | }; |
---|
| 16 | |
---|
| 17 | |
---|
[350] | 18 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.