idea of building python module using pyrex

A

ajikoe

Hello,

I have an idea to build python module to speed up python code in some
of field where pyrex shines such as numeric, code which needs a lot of
looping etc.

What do you think?

Sincerely Yours,
pujo
 
D

Diez B. Roggisch

Hello,

I have an idea to build python module to speed up python code in some
of field where pyrex shines such as numeric, code which needs a lot of
looping etc.

Isn't numeric already written in C?
 
F

Fredrik Lundh

I have an idea to build python module to speed up python code in some
of field where pyrex shines such as numeric, code which needs a lot of
looping etc.

What do you think?

I don't think you need anyone's permission to do that, really. Just grab
the tools and start coding. If you're happy with the result, feel free to
share it, if you want.

</F>
 
A

ajikoe

Hello,

I just wonder if someone has already build it.
Thanks for the response.

Best Regards,
pujo
 
F

Fredrik Lundh

I just wonder if someone has already build it.

built what? it's not like nobody's ever built a Python module using Pyrex before, so
I guess you have to be a bit more precise if you want feedback.

</F>
 
A

ajikoe

For example stastical module like commulative probability function for
t distribution, or other numerical module which incorporate looping to
get the result.

I found that pyrex is very helpfull when dealing with looping things.

pujo
 
D

David M. Cooke

For example stastical module like commulative probability function for
t distribution, or other numerical module which incorporate looping to
get the result.

I found that pyrex is very helpfull when dealing with looping
things.

Pyrex is indeed quite helpful. If you're interested in statistical
distributions, you'll want to look at the scipy.stats module in scipy
(http://www.scipy.org/), which has lots (including the t distribution).

In SciPy, we use Pyrex for the random-number generator module
scipy.random. It's actually used to wrap some C code, but it does the
job well.
 
A

ajikoe

Hello David,

Is SciPy works with python 2.4.2, Windows XP?
I thought it is only for python 2.3?

pujo
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,219
Messages
2,571,118
Members
47,731
Latest member
unutbu

Latest Threads

Top