⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lapack.hpp

📁 矩阵运算源码最新版本
💻 HPP
字号:
// Software License for MTL// // Copyright (c) 2007 The Trustees of Indiana University. All rights reserved.// Authors: Peter Gottschling and Andrew Lumsdaine// // This file is part of the Matrix Template Library// // See also license.mtl.txt in the distribution.#ifndef MTL_LAPACK_INCLUDE#define MTL_LAPACK_INCLUDE#include <complex>#ifdef __cplusplusextern "C" {#endif  // Cholesky Factorization  void spotrf_(const char* uplo, const int* n, float *a, const int* ld, int* info);  void dpotrf_(const char* uplo, const int* n, double *a, const int* ld, int* info);  void cpotrf_(const char* uplo, const int* n, std::complex<float> *a, const int* ld, int* info);  void zpotrf_(const char* uplo, const int* n, std::complex<double> *a, const int* ld, int* info);#ifdef __cplusplus} // extern "C"#endif#endif // MTL_LAPACK_INCLUDE

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -