Welcome to mirror list, hosted at ThFree Co, Russian Federation.

eigenvalues.h « intern « eigen « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11f98b5933fe9553d338eea1289aeba24ed116e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2015 Blender Foundation. All rights reserved. */

/** \file
 * \ingroup intern_eigen
 */

#ifndef __EIGEN3_EIGENVALUES_C_API_H__
#define __EIGEN3_EIGENVALUES_C_API_H__

#ifdef __cplusplus
extern "C" {
#endif

bool EIG_self_adjoint_eigen_solve(const int size,
                                  const float *matrix,
                                  float *r_eigen_values,
                                  float *r_eigen_vectors);

#ifdef __cplusplus
}
#endif

#endif /* __EIGEN3_EIGENVALUES_C_API_H__ */