File: dgCMatrix.h

package info (click to toggle)
rmatrix 0.95.5-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,732 kB
  • ctags: 2,028
  • sloc: ansic: 22,357; makefile: 74; sh: 28
file content (23 lines) | stat: -rw-r--r-- 594 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef MATRIX_CSC_H
#define MATRIX_CSC_H

#include <Rdefines.h>
#include "Mutils.h"
#include "R_ldl.h"
#include "triplet_to_col.h"

SEXP csc_crossprod(SEXP x);
SEXP csc_tcrossprod(SEXP x);
SEXP csc_matrix_crossprod(SEXP x, SEXP y, SEXP classed);
SEXP dgCMatrix_validate(SEXP x);
SEXP compressed_to_dgTMatrix(SEXP x, SEXP colP);
SEXP csc_to_matrix(SEXP x);
SEXP csc_to_dgeMatrix(SEXP x);
SEXP matrix_to_csc(SEXP A);
SEXP dgTMatrix_to_csc(SEXP dgTMatrix);
SEXP csc_getDiag(SEXP x);
SEXP csc_transpose(SEXP x);
SEXP csc_matrix_mm(SEXP a, SEXP b);
SEXP csc_col_permute(SEXP x, SEXP perm);

#endif