Revision 1e790220feb1cb3f461915da11954d8b7fcb4c6b authored by Martin Maechler on 23 December 2013, 00:00:00 UTC, committed by Gabor Csardi on 23 December 2013, 00:00:00 UTC
1 parent d1f70fa
Raw File
dppMatrix.h
#ifndef MATRIX_PPMATRIX_H
#define MATRIX_PPMATRIX_H

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

SEXP dppMatrix_rcond(SEXP obj, SEXP type);
SEXP dppMatrix_validate(SEXP obj);
SEXP dppMatrix_solve(SEXP a);
SEXP dppMatrix_matrix_solve(SEXP a, SEXP b);
SEXP dppMatrix_chol(SEXP x);
double get_norm_sp(SEXP obj, const char *typstr);

#endif
back to top