Blender V4.3
eigenvalues.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2015 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
9#ifndef __EIGEN3_EIGENVALUES_C_API_H__
10#define __EIGEN3_EIGENVALUES_C_API_H__
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16bool EIG_self_adjoint_eigen_solve(const int size,
17 const float *matrix,
18 float *r_eigen_values,
19 float *r_eigen_vectors);
20
21#ifdef __cplusplus
22}
23#endif
24
25#endif /* __EIGEN3_EIGENVALUES_C_API_H__ */
bool EIG_self_adjoint_eigen_solve(const int size, const float *matrix, float *r_eigen_values, float *r_eigen_vectors)