https://github.com/cran/Matrix
Raw File
Tip revision: 9ef16fbfd927fc58eceef97a0f53be562351398a authored by Douglas Bates on 23 October 2006, 00:00:00 UTC
version 0.9975-5
Tip revision: 9ef16fb
cs_utils.h
#ifndef CS_UTILS_H
#define CS_UTILS_H

#include "cs.h"
#include "Mutils.h"

cs *Matrix_as_cs(SEXP x);
css *Matrix_as_css(SEXP x);
csn *Matrix_as_csn(SEXP x);
SEXP Matrix_cs_to_SEXP(cs *A, char *cl, int dofree);
SEXP Matrix_css_to_SEXP(css *S, char *cl, int dofree, int m, int n);
SEXP Matrix_csn_to_SEXP(csn *N, char *cl, int dofree);

#endif
back to top