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

📄 sstevr.c

📁 最著名最快的分子模拟软件
💻 C
字号:
#include "gmx_lapack.h"/* Normally, SSTEVR is the LAPACK wrapper which calls one * of the eigenvalue methods. However, our code includes a * version of SSTEGR which is never than LAPACK 3.0 and can * handle requests for a subset of eigenvalues/vectors too, * and it should not need to call SSTEIN. * Just in case somebody has a faster version in their lapack * library we still call the driver routine, but in our own * case this is just a wrapper to sstegr. */voidF77_FUNC(sstevr,SSTEVR)(char *jobz,                         char *range,                        int *n,                        float *d,                        float *e,                        float *vl,                         float *vu,                        int *il,                         int *iu,                         float *abstol,                        int *m,                        float *w,                         float *z,                        int *ldz,                        int *isuppz,                         float *work,                         int *lwork,                         int *iwork,                        int *liwork,                         int *info){  F77_FUNC(sstegr,SSTEGR)(jobz, range, n, d, e, vl, vu, il, iu, abstol, m, w,	  z, ldz, isuppz, work, lwork, iwork, liwork, info);      return;}

⌨️ 快捷键说明

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