0

我是 C++ 新手,我正在尝试从 Synthesis Toolkit 中理解 SineWave 类。描述

This class computes and saves a static sine "table" that can be shared by multiple instances. It has an interface similar to the WaveLoop class but inherits from the Generator class. Output values are computed using linear interpolation.

所以我猜它根本不计算正弦?如果它在正弦波的高点和低点之间使用线性插值,那不就是三角波吗?有人可以解释计算的作用吗?

4

1 回答 1

0

如果您看一下实现,您会看到构造函数以的步长计算sin范围,默认情况下是。然后在这些值之间进行线性插值。这非常接近正弦函数。0.01.01.0 / TABLE_SIZETABLE_SIZE2048

于 2013-03-22T15:34:30.180 回答