MCPcopy Create free account
hub / github.com/audeering/opensmile / getCol

Method getCol

src/core/dataMemoryLevel.cpp:514–521  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

512}
513
514cVector* cMatrix::getCol(long C) const {
515 bool noTimeMeta = tmeta == NULL;
516 cVector *c = new cVector(N,noTimeMeta);
517 long i;
518 for (i=0; i<N; i++) { c->data[i] = data[N*C+i]; }
519 c->setTimeMeta(tmeta);
520 return c;
521}
522
523cVector* cMatrix::getCol(long C, cVector *c) const {
524 bool noTimeMeta = tmeta == NULL;

Callers 1

utils.hppFile · 0.80

Calls 1

setTimeMetaMethod · 0.80

Tested by

no test coverage detected