ScaMaC  0.8.2
A Scalable Matrix Collection
Functions
scamac_sparsemat_mvm.h File Reference

Sparse matrix creation and manipulation. More...

#include "scamac_vector.h"
#include "scamac_sparsemat.h"
#include <complex.h>

Go to the source code of this file.

Functions

ScamacErrorCode scamac_sparsemat_mvm (const ScamacMatrix *sm, const ScamacVector *x, ScamacVector *y, double alpha, double beta, double gamma)
 Sparse matrix-vector multiplication: y = alpha SM x + beta y + gamma x. More...
 
ScamacErrorCode scamac_sparsemat_mvm_cplx (const ScamacMatrix *sm, const ScamacVector *x, ScamacVector *y, double complex alpha, double complex beta, double complex gamma)
 Complex sparse matrix-vector multiplication: y = alpha SM x + beta y + gamma x. More...
 

Detailed Description

Sparse matrix creation and manipulation.

Author
Andreas Alvermann (University of Greifswald)
Date
October 2017 — today

Function Documentation

◆ scamac_sparsemat_mvm()

ScamacErrorCode scamac_sparsemat_mvm ( const ScamacMatrix *  sm,
const ScamacVector *  x,
ScamacVector *  y,
double  alpha,
double  beta,
double  gamma 
)

Sparse matrix-vector multiplication: y = alpha SM x + beta y + gamma x.

Note
There is little information in declaring *x "const" - it should simply be understood as a reminder that this vector view is not changed

◆ scamac_sparsemat_mvm_cplx()

ScamacErrorCode scamac_sparsemat_mvm_cplx ( const ScamacMatrix *  sm,
const ScamacVector *  x,
ScamacVector *  y,
double complex  alpha,
double complex  beta,
double complex  gamma 
)

Complex sparse matrix-vector multiplication: y = alpha SM x + beta y + gamma x.

Note
Requires complex vectors x,y, but accepts real and complex matrix sm