source: cpp/frams/model/similarity/SVD/matrix_tools.h @ 349

Last change on this file since 349 was 349, checked in by oriona, 9 years ago

implementation of the similarity measure

File size: 432 bytes
Line 
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
5#ifndef MATRIX_TOOLS_H
6#define MATRIX_TOOLS_H
7
8#include <vector>
9#include "frams/util/3d.h"
10
11class MatrixTools
12{
13public:
14    static void SVD(std::vector<double> &vdEigenvalues, int nSize, double *pDistances, Pt3D *&Coordinates);
15};
16
17
18#endif  /* MATRIX_TOOLS_H */
Note: See TracBrowser for help on using the repository browser.