MCPcopy Create free account
hub / github.com/alandefreitas/matplotplusplus / concat

Function concat

source/matplot/util/common.cpp:347–352  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

345 }
346
347 std::vector<double> concat(const std::vector<double> &a,
348 const std::vector<double> &b) {
349 std::vector<double> c(a.begin(), a.end());
350 c.insert(c.end(), b.begin(), b.end());
351 return c;
352 }
353
354 std::string fileread(const std::string &filename) {
355 std::ifstream t(filename);

Callers

nothing calls this directly

Calls 2

beginMethod · 0.80
endMethod · 0.80

Tested by

no test coverage detected