Irregular Quadmesh#

Download this notebook from GitHub (right-click to download).


Most examples work across multiple plotting backends, this example is also available for:

import numpy as np
import holoviews as hv
hv.extension('bokeh')

Declaring data#

n = 20
coords = np.linspace(-1.5, 1.5, n)
X,Y = np.meshgrid(coords, coords);
Qx = np.cos(Y) - np.cos(X)
Qz = np.sin(Y) + np.sin(X)
Z = np.sqrt(X**2 + Y**2)

qmesh = hv.QuadMesh((Qx, Qz, Z))

Plot#

qmesh
This web page was generated from a Jupyter notebook and not all interactivity will work on this website. Right click to download and run locally for full Python-backed interactivity.

Download this notebook from GitHub (right-click to download).