About 134,000 results
Open links in new tab
  1. python - surface plots in matplotlib - Stack Overflow

    I have a list of 3-tuples representing a set of points in 3D space. I want to plot a surface that covers all these points. The plot_surface function in the mplot3d package requires as arguments X,...

  2. python - Surface and 3d contour in matplotlib - Stack Overflow

    Feb 17, 2016 · I would like to plot a surface with a colormap, wireframe and contours using matplotlib. Something like this: Notice that I am not asking about the contours that lie in the plane parallel to xy …

  3. Simplest way to plot 3d surface given 3d points - Stack Overflow

    Sep 14, 2012 · I have a lot (289) of 3d points with xyz coordinates which looks like: With plotting simply 3d space with points is OK, but I have trouble with surface There are some points: for i in range(30): ...

  4. python - How to surface plot/3d plot from dataframe - Stack Overflow

    Apr 13, 2016 · How to surface plot/3d plot from dataframe Asked 9 years, 8 months ago Modified 1 year, 6 months ago Viewed 109k times

  5. python - Plot 3d surface with colormap as 4th dimension, function of x ...

    I'm trying to plot a 3d surface where each of the three dimensions in a separate array of values and the colouring of the surface at each coordinate is a function of x,y,z. A sort of numpy.pcolorme...

  6. python - How can one plot a 3D surface in matplotlib by points ...

    Nov 28, 2023 · 4 It is possible to plot the 3D surface over your scatter plot using the plt.plot_trisurf(...) function as long as you find the right ordering of vertices for the triangles. There is a function from …

  7. python - How to display a 3D plot of a 3D array isosurface with …

    59 I have a 3-dimensional numpy array. I'd like to display (in matplotlib) a nice 3D plot of an isosurface of this array (or more strictly, display an isosurface of the 3D scalar field defined by interpolating …

  8. python - Plot a 3D surface from {x,y,z}-scatter data - Stack Overflow

    I'm trying to plot a 3D surface constructed to fit some {x,y,z} points in python -- ideally something like the Mathematica ListSurfacePlot3D function. Thus far I've tried plot_surface and plot_wireframe on my …

  9. python - Matplotlib - Wrong overlapping when plotting two 3D …

    I am trying to plot two 3D surfaces on the same axes in matplotlib with the plot_surface command.

  10. python - How to add the plane y = x to a 3D surface plot in Plotly ...

    Nov 2, 2024 · To add '𝑦=𝑥' to your 3D surface plot in Plotly, you can define a separate surface for this plane and add it to the figure using another 'go.Surface' object. In Plotly, the Surface plot requires …