gsdecon
C++ port of the GSDecon algorithm
Loading...
Searching...
No Matches
Results.hpp
Go to the documentation of this file.
1#ifndef GSDECON_RESULTS_HPP
2#define GSDECON_RESULTS_HPP
3
4#include <vector>
5
11namespace gsdecon {
12
17template<typename Float_>
18struct Buffers {
23 Float_* scores;
24
29 Float_* weights;
30};
31
36template<typename Float_>
37struct Results {
42 std::vector<double> scores;
43
49 std::vector<double> weights;
50};
51
52}
53
54#endif
Gene set scoring with gsdecon.
Definition blocked.hpp:21
Buffers for the results of compute() and compute_blocked().
Definition Results.hpp:18
Float_ * scores
Definition Results.hpp:23
Float_ * weights
Definition Results.hpp:29
Results of compute() and compute_blocked().
Definition Results.hpp:37
std::vector< double > scores
Definition Results.hpp:42
std::vector< double > weights
Definition Results.hpp:49