-
Notifications
You must be signed in to change notification settings - Fork 58
Question: plot_trisurf (matplotlib) directly from qhull #343
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I am able to plot the adaptive triangulated mesh of other functions. I'm not sure why the triangulation of this particular adaptive surface is so incorrect while the resulting interpolated grid ( |
Hi @orbisvicis, thanks for your interest in Adaptive. I am having trouble understanding the exact problem. Would it be possible to post a full running example that reproduces the problem? |
The problem was that the domains differ in scale by about 1e4 while Question. Since the learner builds an incremental triangulation and the default loss function depends on the triangle area, would I get better results if I scale my bounds before running the learner? For example, scaling |
I want to plot the Delaunay triangulation directly with
plot_trisurf
from mplot3d because the grid interpolation consumes too much memory, but the resulting surface is a jumble of triangles even thoughlearner.npoints
is 71016.The issue appears related to the way
adaptive
triangulates the mesh, because I can create a triangulation from a regular grid without any issues:It's interesting that the
plot
andinterpolated_on_grid
results return the expected surface, except that the output is transposed.The text was updated successfully, but these errors were encountered: