https://github.com/cran/Matrix
Raw File
Tip revision: 30dcf7f5ab14eb2386bbe367d87bdd928f0e8418 authored by Martin Maechler on 20 January 2017, 13:31:32 UTC
version 1.2-8
Tip revision: 30dcf7f
dsyMatrix.h
#ifndef MATRIX_SYMATRIX_H
#define MATRIX_SYMATRIX_H

#include "Mutils.h"
#include "R_ext/Lapack.h"

SEXP dsyMatrix_as_dspMatrix(SEXP from);
SEXP dsyMatrix_as_matrix(SEXP from, SEXP keep_dimnames);
SEXP dsyMatrix_matrix_mm(SEXP a, SEXP b, SEXP rt);
SEXP dsyMatrix_matrix_solve(SEXP a, SEXP b);
SEXP dsyMatrix_norm(SEXP obj, SEXP type);
SEXP dsyMatrix_rcond(SEXP obj, SEXP type);
SEXP dsyMatrix_solve(SEXP a);
SEXP dsyMatrix_trf(SEXP x);
double get_norm_sy(SEXP obj, const char *typstr);

#endif
back to top