Files
workinf_Blender_Wasm/blender-5.2.0/intern/eigen/intern/svd.h
2026-08-12 04:47:48 -04:00

24 lines
415 B
C

/* SPDX-FileCopyrightText: 2015 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup intern_eigen
*/
#ifndef __EIGEN3_SVD_C_API_H__
#define __EIGEN3_SVD_C_API_H__
#ifdef __cplusplus
extern "C" {
#endif
void EIG_svd_square_matrix(
const int size, const float *matrix, float *r_U, float *r_S, float *r_V);
#ifdef __cplusplus
}
#endif
#endif /* __EIGEN3_SVD_C_API_H__ */