https://github.com/cran/Matrix
Raw File
Tip revision: 98e1bd7ed71f6441680780aacecefa8475123aba authored by Douglas Bates on 29 September 2006, 00:00:00 UTC
version 0.9975-1
Tip revision: 98e1bd7
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 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);
SEXP dsyMatrix_validate(SEXP obj);
double get_norm_sy(SEXP obj, char *typstr);

#endif
back to top