如何使用ZedGraph绘制三角波?
如何使用 ZedGraph 绘制三角波(对称)?
替代文本 http://img101.imageshack.us/img101/8482/okr20troj.jpg< /a>
最好有调整周期和幅度的选项。
//编辑:该函数必须[相关/基于]? 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);
}
How to draw triangle wave (symmetrical) using ZedGraph?
alt text http://img101.imageshack.us/img101/8482/okr20troj.jpg
Preferably with option to adjust period and amplitude.
//Edit: the function has to be [related/based on]? x (x-axis).
Something like this:
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);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)