[go: up one dir, main page]

File: plmd.h

package info (click to toggle)
r-bioc-preprocesscore 1.36.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,108 kB
  • ctags: 463
  • sloc: ansic: 9,494; sh: 10; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 413 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef PLMD_H
#define PLMD_H





void plmd_fit(double *y, int y_rows, int y_cols, int ngroups, int *grouplabels, int *was_split,
	      double *out_beta, double *out_resids, double *out_weights,
	      double (* PsiFn)(double, double, int), double psi_k,int max_iter);


double *plmd_get_design_matrix(int y_rows, int y_cols, int ngroups, int *grouplabels,int *was_split,int *X_rows,int *X_cols);







#endif