dvbrmm_f.c
来自「用于求解大型稀疏线性方程组Ax=b的数值计算库.」· C语言 代码 · 共 37 行
C
37 行
/*-------------------------------------------------------|| 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 dvbrmm_( const int *transa, const int *mb, const int *n, const int *kb, 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){ dvbrmm( *transa, *mb, *n, *kb, *alpha, descra, val, indx, bindx, rpntr, cpntr, bpntrb, bpntre, b, *ldb, *beta, c, *ldc, work, *lwork);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?