https://github.com/cran/Matrix
Raw File
Tip revision: fd84bd27d5e2192fa0df74fd3b27c5b56fb316bf authored by Matrix-authors on 05 February 2007, 00:00:00 UTC
version 0.9975-10
Tip revision: fd84bd2
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