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

📄 dvbrsm_f.c

📁 用于求解大型稀疏线性方程组Ax=b的数值计算库.
💻 C
字号:
/*-------------------------------------------------------||  NIST SPARSE BLAS v. 0.9 (Sat Jul 6 14:27:21 EDT 1996) ||                                                        ||  Authors:                                              ||     Karin A. Remington and Roldan Pozo                 ||     National Institute of Standards and Technology     ||                                                        ||  Based on the interface standard proposed in:          | |   "A Revised Proposal for a Sparse BLAS Toolkit" by    ||    S. Carney and K. Wu -- University of Minnesota      ||    M. Heroux and G. Li -- Cray Research                |  |    R. Pozo and K.A. Remington -- NIST                  ||                                                        ||  Contact:                                              ||     Karin A. Remington, email: kremington@nist.gov     |--------------------------------------------------------*/#include <stdlib.h>#include <stdio.h>#include "spblas.h"/* Sparse BLAS Toolkit interface routine: */void dvbrsm_(             const int *transa, const int *mb, const int *n,              const int *unitd, const double dv[],              const double *alpha, const int descra[], const double val[],             const int indx[], const int bindx[], const int rpntr[],             const int cpntr[], const int bpntrb[], const int bpntre[],             const double b[], const int *ldb,             const double *beta, double c[], const int *ldc,             double work[], const int *lwork){      dvbrsm( *transa,   *mb,   *n,  *unitd,   dv, *alpha, descra,   val,              indx,  bindx, rpntr, cpntr,  bpntrb,  bpntre,               b, *ldb, *beta,  c,   *ldc,              work,   *lwork);}

⌨️ 快捷键说明

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