Blender V4.3
svd.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_SVD_C_API_H__
10#define __EIGEN3_SVD_C_API_H__
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
17 const int size, const float *matrix, float *r_U, float *r_S, float *r_V);
18
19#ifdef __cplusplus
20}
21#endif
22
23#endif /* __EIGEN3_SVD_C_API_H__ */
void EIG_svd_square_matrix(const int size, const float *matrix, float *r_U, float *r_S, float *r_V)
Definition svd.cc:40