Dear Pierre, When looking at the linear algebra man page, it claims that the subroutines inside should be used for small matrices only and that LAPACK should be used for large matrices. Then I went to google and searched for to find a python wrapper over LAPACK and I find references to linalg. Is this the same as the linalg of pygsl? Is this something else?
Ultimately, I need to deal with large amtrices indeed, and so if I need to use LAPACK I would need the correct python wrapper for this. Can you please help me with this? Thanks, Eduardo Lopez (PhD) Theoretical Division T-13 Los Alamos National Laboratory PO Box 1663 Mail Stop B258 Los Alamos, NM 87545 Phone: (505) 665 0055 Fax: (505) 665 2659 On Thu, 29 Mar 2007, Pierre SCHNIZER wrote: > Eduardo Lopez wrote: >> Dear all, >> >> I am writing to ask you for information on how to put in use some of the >> features of the library pygsl. In particular, I am interested in linear >> algebra and eigenvalue problems. These are said to be implemented in the >> reference manual, but looking at the index, I did not find any reference to >> them. The only place I saw them mentioned was in the Front Matter. I was >> looking at the site: >> >> http://pygsl.sourceforge.net/reference/pygsl/ref.html >> >> I would appreciate your help. Best regards, >> > Dear Eduardo, > > start python and type > >>>> from pygsl import linalg, eigen >>>> help(eigen) >>>> help(linalg) > > This will give you descriptions of the functions. > > The missing reference manual is one of the biggest missing points for pygsl. > But many functions are documented via __doc__ strings. > > Hope thats get you started. Please do not hesitate to come back if you need > more help. > > Sincerely yours > Pierre > ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ pygsl-discuss mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/pygsl-discuss
