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
6#include "irlba/irlba.hpp"
7
13namespace gsdecon {
14
19template<typename Float_>
20struct Buffers {
25 Float_* scores;
26
31 Float_* weights;
32};
33
38template<typename Float_>
39struct Results {
44 std::vector<Float_> scores;
45
51 std::vector<Float_> weights;
52
57};
58
59}
60
61#endif
Gene set scoring with gsdecon.
Definition blocked.hpp:21
Buffers for the results of compute() and compute_blocked().
Definition Results.hpp:20
Float_ * scores
Definition Results.hpp:25
Float_ * weights
Definition Results.hpp:31
Results of compute() and compute_blocked().
Definition Results.hpp:39
std::vector< Float_ > weights
Definition Results.hpp:51
std::vector< Float_ > scores
Definition Results.hpp:44
irlba::Metrics metrics
Definition Results.hpp:56