blas.h

来自「留一模型选择法leave-one-out model selection」· C头文件 代码 · 共 26 行

H
26
字号
/* blas.h  --  C header file for BLAS                         Ver 1.0 *//* Jesse Bennett                                       March 23, 2000 *//**  barf  [ba:rf]  2.  "He suggested using FORTRAN, and everybody barfed."	- From The Shogakukan DICTIONARY OF NEW ENGLISH (Second edition) */#ifndef BLAS_INCLUDE#define BLAS_INCLUDE/* Data types specific to BLAS implementation */typedef struct { float r, i; } fcomplex;typedef struct { double r, i; } dcomplex;typedef long blasbool;#include "blasp.h"    /* Prototypes for all BLAS functions */#define FALSE 0#define TRUE  1/* Macro functions */#define MIN(a,b) ((a) <= (b) ? (a) : (b))#define MAX(a,b) ((a) >= (b) ? (a) : (b))#endif

⌨️ 快捷键说明

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