SCM Repository
[matrix] Annotation of /pkg/Matrix/src/lgCMatrix.h
Annotation of /pkg/Matrix/src/lgCMatrix.h
Parent Directory
|
Revision Log
Revision 732 -
(view)
(download)
(as text)
Original Path: pkg/src/lgCMatrix.h
1 : |
bates |
692 |
#ifndef MATRIX_LGCMATRIX_H
|
2 : |
bates |
732 |
#define MATRIX_LGCMATRIX_H
|
3 : |
bates |
692 |
|
4 : |
|
|
#include <Rdefines.h>
|
5 : |
|
|
#include "Mutils.h"
|
6 : |
|
|
#include "triplet_to_col.h"
|
7 : |
|
|
|
8 : |
|
|
SEXP lgCMatrix_validate(SEXP x);
|
9 : |
bates |
718 |
SEXP Matrix_lgClgCmm(int tra, int trb, int m, int n, int k,
|
10 : |
bates |
692 |
const int ai[], const int ap[],
|
11 : |
|
|
const int bi[], const int bp[],
|
12 : |
bates |
718 |
int beta, SEXP CIP, int cp[]);
|
13 : |
|
|
SEXP lgCMatrix_lgCMatrix_mm(SEXP a, SEXP b);
|
14 : |
|
|
SEXP lgCMatrix_trans(SEXP x);
|
15 : |
bates |
723 |
SEXP Matrix_lgCsyrk(int up, int tra, int n, int k, const int ai[],
|
16 : |
|
|
const int ap[], int beta, SEXP CIP, int cp[]);
|
17 : |
bates |
732 |
SEXP lgCMatrix_crossprod(SEXP x, SEXP trans, SEXP C);
|
18 : |
|
|
SEXP lgCMatrix_picky_column(SEXP x);
|
19 : |
bates |
692 |
|
20 : |
|
|
#endif
|