Zdenko <[email protected]> wrote: > >Please, can anybody write me a simple recursive matrix multiplication >using multiple threads in Python, or at least show me some guidelines >how to write it myself
Matrix multiplication is not generally done recursively. There's no conceptual gain. It makes more sense iteratively. -- Tim Roberts, [email protected] Providenza & Boekelheide, Inc. -- http://mail.python.org/mailman/listinfo/python-list
