This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <vector> | |
#include <cassert> | |
#include <cmath> | |
#include <algorithm> | |
namespace resample { | |
// 再近傍補間 (補間しない) | |
template <class T> |