MCPcopy Create free account
hub / github.com/audacity/audacity / VectorSubset

Function VectorSubset

libraries/lib-math/Matrix.cpp:170–176  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

168}
169
170Vector VectorSubset(const Vector &other, unsigned start, unsigned len)
171{
172 Vector v(len);
173 for(unsigned i = 0; i < len; i++)
174 v[i] = other[start+i];
175 return v;
176}
177
178Vector VectorConcatenate(const Vector& left, const Vector& right)
179{

Callers 1

InterpolateAudioFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected