MCPcopy Create free account
hub / github.com/BoevaLab/FREEC / KernelVector

Class KernelVector

src/KernelVector.h:9–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7#include <iostream>
8
9class KernelVector
10{
11public:
12 KernelVector(int radius);
13 ~KernelVector(void);
14 float getK(int i , int j);
15 float getSum();
16 int getRadius();
17private:
18 std::vector<float> vector_;
19 int radius_;
20 float sum_;
21};
22
23float EpanechnikovKernel (float u);
24

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected