#include <iostream>
#include <cmath>
#include <mechsys/util/fatal.h>
Go to the source code of this file.
Classes |
| class | LinAlg::Vector< Value_T > |
Namespaces |
| namespace | LinAlg |
| | Linear algebra routines.
|
Functions |
| void | dscal_ (int const *N, double const *alpha, double *X, int const *incX) |
| void | dcopy_ (int const *N, double const *X, int const *incX, double *Y, int const *incY) |
| void | daxpy_ (int const *N, double const *alpha, double const *X, int const *incX, double *Y, int const *incY) |
| template<typename Value_T > |
| std::ostream & | LinAlg::operator<< (std::ostream &os, const LinAlg::Vector< Value_T > &V) |
Function Documentation
| void daxpy_ |
( |
int const * |
N, |
|
|
double const * |
alpha, |
|
|
double const * |
X, |
|
|
int const * |
incX, |
|
|
double * |
Y, |
|
|
int const * |
incY |
|
) |
| |
| void dcopy_ |
( |
int const * |
N, |
|
|
double const * |
X, |
|
|
int const * |
incX, |
|
|
double * |
Y, |
|
|
int const * |
incY |
|
) |
| |
| void dscal_ |
( |
int const * |
N, |
|
|
double const * |
alpha, |
|
|
double * |
X, |
|
|
int const * |
incX |
|
) |
| |