Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Ilnumerics,现在我想知道是否可以在 IlPanel 函数中绘制两个变量,如 f(x,y)。
我在互联网上搜索过,但一无所获。有人可以帮助我吗?
从版本 3.3.2 开始。'ILSurface' 允许将两个参数的函数定义绘制为表面:
private void ilPanel1_Load(object sender, EventArgs e) { ilPanel1.Scene.Add( new ILPlotCube(twoDMode: false) { new ILSurface((x,y) => { return (float)Math.Sin(0.1f * x * x + 0.2f * y * y); }) }); }
结果: