https://github.com/cran/Matrix
Raw File
Tip revision: c7633495f22d21bd0e6756d6b2013a886015e419 authored by Douglas Bates on 14 November 2005, 00:00:00 UTC
version 0.99-2
Tip revision: c763349
dpoMatrix.h
#ifndef MATRIX_POMATRIX_H
#define MATRIX_POMATRIX_H

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

SEXP dpoMatrix_rcond(SEXP obj, SEXP type);
SEXP dpoMatrix_validate(SEXP obj);
SEXP dpoMatrix_solve(SEXP a);
SEXP dpoMatrix_matrix_solve(SEXP a, SEXP b);
SEXP dpoMatrix_dgeMatrix_solve(SEXP a, SEXP b);
SEXP dpoMatrix_chol(SEXP x);
double get_norm_sy(SEXP obj, char *typstr);

#endif
back to top