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

Function VectorConcatenate

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

Source from the content-addressed store, hash-verified

176}
177
178Vector VectorConcatenate(const Vector& left, const Vector& right)
179{
180 Vector v(left.Len() + right.Len());
181 for(unsigned i = 0; i < left.Len(); i++)
182 v[i] = left[i];
183 for(unsigned i = 0; i < right.Len(); i++)
184 v[i + left.Len()] = right[i];
185 return v;
186}
187
188Vector operator*(const Vector &left, const Matrix &right)
189{

Callers 1

InterpolateAudioFunction · 0.85

Calls 1

LenMethod · 0.80

Tested by

no test coverage detected