Keflavich wrote:
> [snip]
>
> I feel fairly certain, however, that floats are exactly what I want
> for my purposes: I need moderately high precision and I'm not
> concerned about the least-significant-bit errors except when they
> violate function domains. I guess the overriding lesson is that e
Méta-MCI (MVP) wrote:
>> no idea how it works with windows.
>
> On XP: fine.
> On Vista: very difficult...
Hello Captain Obvious :-)
--
http://mail.python.org/mailman/listinfo/python-list
Diez B. Roggisch wrote:
> Achim Domma wrote:
> [snip]
>>
>> Is there an alternative to wx+pyOpenGL?
>
> The usual suspects - mainly Qt, possibly Tk (not sure if there is a
> python-available version of open gl canvasses for Tk)
>
> Diez
togl is a Tk/OpenGL widget that can be used with python as
Hi,
A.T.Hofkamp wrote:
> So what is the focus in the list?
>
> I think 'science' is both too broad and in many cases not at all relevant for
> the problem at hand.
>
> [snip]
>
> Any particular brand of science (CS, Math, Physics, Bio, Chemistry, other)?
>
> Should I use Python for programmin
Francesco Pietra wrote:
> I was trying to suggest a more specific mail-list in order not to be floaded.
> I
> am the opinion that python-list@python.org is very informative and useful,
> though it is hard to find the time for so many mails.
> f.
>
I agree with Francesco: Python is increasingly
[EMAIL PROTECTED] wrote:
> Hi, I work for an IT company in Phoenix, AZ and am trying to find an
> experienced python developer in the area. Can anyone help?
Hi,
There's a Python job board at http://www.python.org/community/jobs/
The first link on the page documents how to get your ad listed.
j.
[EMAIL PROTECTED] wrote:
>
>
> # echo $HOSTTYPE
> x86_64
> # python
import os
print os.environ.get('HOSTTYPE')
> None
>
> If I do the same thing with a different variable (XILINX, in this
> case), it works fine.
bash documentation indicates that HOSTTYPE (and a few others: OSTYPE,
MA
Davy wrote:
> Hi all,
>
> I have three lists with the same length. Is there any method to loop
> the three lists without a loop counter?
>
> Best regards,
> Davy
>
Hello,
the zip function?
>>> list1 = [1,2,3]
>>> list2 = [4,5,6]
>>> list3 = [7,8,9]
>>> for a,b,c in zip(list1,list2,list3):
...
[EMAIL PROTECTED] wrote:
> Just to clarify what I'm after:
>
> If you plot (-3)^n where n is a set of negative real numbers between 0
> and -20 for example, then you get a discontinuos line due to the
> problem mentioned above with fractional exponents.
>
> ..
>
It looks like you crash-landed
olive wrote:
>>> [snip]
>
> But few people are used to Plain Text Markup (excepted in some
> scientific area maybe) and it is error prone.
>
It looks very much like Gummi's authors and target audience actually are
part of the few people you are talking about: i.e. console-happy folks
that ar
you can use the dictionary returned by the built in function vars, along
the lines of
>>> vars()["foo"] = lambda x: 3*x
>>> foo(2)
6
but polluting your name space with data counts as bad style and will
probably bite you at some point -- you probably are better of putting
closures in a dictio
James Stroud wrote:
> Hello All,
>
> I'm using numpy to calculate determinants of matrices that look like
> this (13x13):
>
> [[ 0. 1. 1. 1. 1. 1. 1. 1. 1. 1. 1. 1. 1. 1.]
[snip]
> But I have a feeling I'm exceeding the capacity of floats here. Does
> anyone have an idea for how to
[EMAIL PROTECTED] wrote:
> I'm trying to do some integral calculation. I have searched the web, but
> haven't found any useful information. Will somebody point me to the
> right resources on the web for this job ?
>
> Thanks a lot.
>
> ps. Can numpy be used for this job?*
> *
It can be done wi
13 matches
Mail list logo