英文:
What are Mesh and Surf equivalents of MATLAB in Julia?
问题
MATLAB有两个不同的函数,mesh和surf。我在Julia中找到了类似于MATLAB中的surf的surface 函数。
在Julia中是否有mesh的等价函数?
区别在于,surf创建了一种固体表面,而mesh则创建了由“网格”或“线框”组成的表面。
英文:
MATLAB has two distinct mesh and surf functions. I found the surface function in Julia, which is similar to the surf in MATLAB.
Is there an equivalent of mesh in Julia?
The difference is that, surf creates kind of a solid surface, whereas mesh creates a surface formed by a "mesh" of "wires".
答案1
得分: 1
PyPlot.jl 和 PythonPlot.jl(它们包装了 Matplotlib)导出了 mesh 和 surf 函数(分别对应 Matplotlib 的 plot_wireframe 和 plot_surface 函数)。
英文:
PyPlot.jl and PythonPlot.jl (which wrap Matplotlib) export mesh and surf functions (corresponding to Matplotlib's plot_wireframe and plot_surface functions, respectively).
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。


评论