Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > bf21b4394f4d7fa09e3626145d3315e0 > files > 236

python-matplotlib-doc-1.2.0-14.fc18.i686.rpm

.. _mplot3d-contour3d_demo2:

mplot3d example code: contour3d_demo2.py
========================================



.. plot:: /builddir/build/BUILD/matplotlib-1.2.0/doc/mpl_examples/mplot3d/contour3d_demo2.py

::

    from mpl_toolkits.mplot3d import axes3d
    import matplotlib.pyplot as plt
    from matplotlib import cm
    
    fig = plt.figure()
    ax = fig.gca(projection='3d')
    X, Y, Z = axes3d.get_test_data(0.05)
    cset = ax.contour(X, Y, Z, extend3d=True, cmap=cm.coolwarm)
    ax.clabel(cset, fontsize=9, inline=1)
    
    plt.show()
    
    

Keywords: python, matplotlib, pylab, example, codex (see :ref:`how-to-search-examples`)