如何使用ZedGraph绘制三角波(对称) ?
替代文字 http://img101.imageshack.us/img101/8482/okr20troj.jpg
最好带有调整周期和幅度的选项。
//编辑:函数必须是[相关/基于]?x(x 轴)。
像这样的东西:
for (x = 0; x <= 10; x += .005)
{
if (Math.Sin(x * (2 * Math.PI / period)) >= 0)
y = amplitude;
else
y = -amplitude;
originalList.Add(x, y);
}