https://github.com/cran/Matrix
Raw File
Tip revision: e113a4448fbc6439c95e24384def829474720412 authored by Doug and Martin on 07 June 2007, 00:00:00 UTC
version 0.99875-2
Tip revision: e113a44
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