Search Results

3
votes

Speeding Up Python

People have given some good advice, but you have to be aware that when high performance is needed, the python model is: punt to c. Efforts like psyco may in the future help a bit, but python just …
36
votes

What is MATLAB good for? Why is it so used by universities? When is it better than Python?

Adam is only partially right. Many, if not most, mathematicians will never touch it. If there is a computer tool used at all, it's going to be something like …
0
votes

Programming tutorials for people with zero experience

Python is a good choice. I don't think lisp actually is "too mathematical and abstract" as you put it. One good alternate option to consider for a person starting this way is the paring of the boo …
1
vote

Creating a tree from a list of tuples

I'm not sure I've quite follows what you are exactly trying to do, but if you have a forest as a list of nodes, can't you just read it and build the tree structure, then write it out as a bread-fir …
2
votes

Is there a Vector3 type in Python?

I don't believe there is anything standard (but I could be wrong, I don't keep up with python that closely). It's very easy to implement though, and you may want to build on top of the nump …
2
votes

How to synthesize sounds?

Cheery, if you want to generate (from scratch) something that really sounds "organic", i.e. like a physical object, you're probably best off to learn a bit about how these sounds are generated. Fo …