dbscsm_f.c

来自「用于求解大型稀疏线性方程组Ax=b的数值计算库.」· C语言 代码 · 共 38 行

C
38
字号
/*-------------------------------------------------------||  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  dbscsm_(             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 bindx[], const int bpntrb[], const int bpntre[],              const int *lb, const double b[], const int *ldb,             const double *beta, double c[], const int *ldc,             double work[], const int *lwork){      dbscsm( *transa,   *mb,   *n,  *unitd,   dv, *alpha, descra,   val,              bindx, bpntrb,  bpntre, *lb,               b, *ldb, *beta,  c,   *ldc,              work,   *lwork);}

⌨️ 快捷键说明

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