Revision f584db857045d794fb5a587b18f1ca3ed40b8679 authored by Douglas Bates on 15 January 2006, 00:00:00 UTC, committed by Gabor Csardi on 15 January 2006, 00:00:00 UTC
1 parent a2d2fd0
Raw File
dppMatrix.h
#ifndef MATRIX_PPMATRIX_H
#define MATRIX_PPMATRIX_H

#include <R_ext/Lapack.h>
#include "Mutils.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 classed);
SEXP dppMatrix_chol(SEXP x);
double get_norm_sp(SEXP obj, char *typstr);

#endif
back to top