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

📄 cblas_dznrm2.c

📁 基本的C语言线性代数函数库,在linux下可直接编译;在windows下要显示地申明包含
💻 C
字号:
/* * cblas_dznrm2.c * * The program is a C interface to dznrm2. * It calls the fortran wrapper before calling dznrm2. * * Written by Keita Teranishi.  2/11/1998 * */#include "cblas.h"#include "cblas_f77.h"double cblas_dznrm2( const int N, const void *X, const int incX) {   double nrm2;#ifdef F77_INT   F77_INT F77_N=N, F77_incX=incX;#else    #define F77_N N   #define F77_incX incX#endif   F77_dznrm2_sub( &F77_N, X, &F77_incX, &nrm2);   return nrm2;}

⌨️ 快捷键说明

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