|
From: John B. <by...@bu...> - 2006-01-17 15:54:22
|
On Tue, Jan 17, 2006 at 02:24:33PM +0200, Rudolph van der Merwe wrote: > What is the correct importing order if one wants to use the full > capabilities of numpy+scipy+matplotlib? I believe the correct way to import the packages is to not use from blah import * but rather to use: import numpy as np import scipy as S import pylab as pl This keeps the namespace clean and prevents function collisions. HTH, John -- Courage and perseverance have a magical talisman, before which difficulties disappear and obstacles vanish into air. -- John Quincy Adams |