Skip to content

Instantly share code, notes, and snippets.

@yoshimurawork
yoshimurawork / resample.hpp
Last active January 3, 2019 07:14
サンプルレート変換のコードです。
#pragma once
#include <vector>
#include <cassert>
#include <cmath>
#include <algorithm>
namespace resample {
// 再近傍補間 (補間しない)
template <class T>