On 8/3/07, Stephen Webb <[EMAIL PROTECTED]> wrote:
> Greetings all,
>
> I've recently begun using Python to do scientific computation, and I wrote
> the following script to find approximate eigenvalues for a semi-infinite
> matrix:
>
>
> from pylab import *
> from numpy import *
> from scipy impor
Sorry, forgot to "Reply to all."
On 8/3/07, Stephen Webb <[EMAIL PROTECTED]> wrote:
> Greetings all,
<>
> Also, I've been having trouble with the plot function in matplotlib. For
> example, I enter the following in the terminal:
>
> >>> from pylab import *
> >>> plot([1,2,3])
> []
>
I can help
Greetings all,
I've recently begun using Python to do scientific computation, and I wrote
the following script to find approximate eigenvalues for a semi-infinite
matrix:
from pylab import *
from numpy import *
from scipy import *
def bandstructure(N,s):
b = s/4.0
jmax = 10 + N**2