File: samplerow.cpp

package info (click to toggle)
aoflagger 3.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,000 kB
  • sloc: cpp: 67,891; python: 497; sh: 242; makefile: 22
file content (17 lines) | stat: -rw-r--r-- 375 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "samplerow.h"

SampleRow SampleRow::MakeWithoutMissings() const {
  size_t newSize = 0;
  for (const num_t v : _values) {
    if (std::isfinite(v)) ++newSize;
  }
  SampleRow newRow(newSize);
  size_t indexToNew = 0;
  for (const num_t v : _values) {
    if (std::isfinite(v)) {
      newRow._values[indexToNew] = v;
      ++indexToNew;
    }
  }
  return newRow;
}