MCPcopy Create free account
hub / github.com/SatDump/SatDump / double_buffer_to_float

Function double_buffer_to_float

src-core/common/utils.h:144–150  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

142std::string timestamp_to_string(double timestamp, bool local = false);
143
144inline std::vector<float> double_buffer_to_float(double *ptr, int size)
145{
146 std::vector<float> ret;
147 for (int i = 0; i < size; i++)
148 ret.push_back(ptr[i]);
149 return ret;
150}
151
152double get_median(std::vector<double> values);
153

Callers 1

warpOnGPU_fp32Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected