<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>Kurene</author_name>
  <author_url>https://blog.hatena.ne.jp/Kurene/</author_url>
  <blog_title>Wizard Notes</blog_title>
  <blog_url>https://www.wizard-notes.com/</blog_url>
  <categories>
    <anon>音響音楽信号処理</anon>
    <anon>Python</anon>
    <anon>ディジタルフィルタ</anon>
  </categories>
  <description>VSTプラグインで線形畳み込みを実装する必要が出てきたので、 事前にPythonでC++ライクな実装を検証しました。 とりあえず、２つの入力信号の配列サイズ不明で、最適化していない実装です。 import numpy as np from numba import jit @jit def conv_linear(x1, x2, y, len_x1, len_x2, len_y): for k in range(0, len_y): y[k] = 0.0 for m in range(0, len_x1): n = k - m if n &gt;= 0 and n &lt; len_x2: y[k] +=…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fwww.wizard-notes.com%2Fentry%2Faudioplugins%2Flinear-convolution&quot; title=&quot;線形畳み込みのforループでのナイーブな実装 (Python) - Wizard Notes&quot; class=&quot;embed-card embed-blogcard&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;display: block; width: 100%; height: 190px; max-width: 500px; margin: 10px 0px;&quot;&gt;&lt;/iframe&gt;</html>
  <image_url>https://cdn-ak.f.st-hatena.com/images/fotolife/K/Kurene/20200716/20200716231824.png</image_url>
  <provider_name>Hatena Blog</provider_name>
  <provider_url>https://hatena.blog</provider_url>
  <published>2020-07-16 23:20:42</published>
  <title>線形畳み込みのforループでのナイーブな実装 (Python)</title>
  <type>rich</type>
  <url>https://www.wizard-notes.com/entry/audioplugins/linear-convolution</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
