[Matplotlib-users] Capitalization of Matplotlib

2015-02-16 Thread Benjamin Root
I am in the final rounds of edits for my book and a question has come up between me and the editors. When should the matplotlib be capitalized? 1) never 2) mostly never (even in the beginning of a sentence), except when used in a title 3) usually never, except at the beginning of a sentence and

Re: [Matplotlib-users] [matplotlib-devel] Capitalization of Matplotlib

2015-02-16 Thread Nelle Varoquaux
IMO, never. On 16 February 2015 at 19:16, Benjamin Root ben.r...@ou.edu wrote: I am in the final rounds of edits for my book and a question has come up between me and the editors. When should the matplotlib be capitalized? 1) never 2) mostly never (even in the beginning of a sentence),

Re: [Matplotlib-users] [matplotlib-devel] Capitalization of Matplotlib

2015-02-16 Thread Paul Kuin
Ah, since it is a proper name it should be capitalised, but it never was. I think that it should remain uncapitalised and that you want to propose an alternative, like a change in type for the proper name matplotlib. Could be typescript, or something else. Paul On Mon, Feb 16, 2015 at 6:23 PM,

Re: [Matplotlib-users] [matplotlib-devel] Capitalization of Matplotlib

2015-02-16 Thread Matthew Brett
Hi, On Mon, Feb 16, 2015 at 1:26 PM, Paul Kuin npk...@gmail.com wrote: Ah, since it is a proper name it should be capitalised, but it never was. I think that it should remain uncapitalised and that you want to propose an alternative, like a change in type for the proper name matplotlib. Could

[Matplotlib-users] matplotlib v1.4.3

2015-02-16 Thread Thomas Caswell
Hello all, We are pleased to announce the release of matplotlib v1.4.3! Wheels, windows binaries and the source tarball are available through both source-forge [1] and pypi (via pip). Additionally the source is available tarball is available from github [2] and mac-wheels from

[Matplotlib-users] surface without lines + circular domain

2015-02-16 Thread Diego Avesani
Dear all, I have two problems. 1) I would like to plot a 3D surface, but without lines. 2) I would like to plot the surface on a circular domain. I mean, this is a piece of my code X = np.arange(0, 1, 0.05) Y = np.arange(0, 1, 0.05) X, Y = np.meshgrid(X, Y) R = np.sqrt(X**2 + Y**2) Z =

Re: [Matplotlib-users] surface without lines + circular domain

2015-02-16 Thread Raymond Smith
Hi, Diego 1) use the linewidth=0 kwarg to plot_surface (e.g. see http://matplotlib.org/examples/mplot3d/surface3d_demo.html) 2) Define your mesh by r, theta, then convert to x, y (e.g. see http://stackoverflow.com/a/26876699/2965572) Ray On Mon, Feb 16, 2015 at 9:45 AM, Diego Avesani