Fernando Vargas wrote:
> hi,
> 
> First at all i want to congratulate for your work with PYGSL, this is 
> very userful. My name is Fernando Vargas, I'm working on a predictive 
> maintenance system for laboratory tools, this application uses wavelts 
> as part of the process  I'm working with pyhon for the development of 
> this application and I need to know if you have some documentation or 
> API about the objets and classes that you use in your wrapper, examples 
> are very clear about this but some extra documents could be very useful.
> 
> 

Thanks for your praise. Wavelets are implemented, but I do not know 
anything about the mathematics behind them. There interface is as for 
the FFT routines.

If you could send me some simple example or a sketch of a use of 
wavelets, I could show you the different possible optimizations. 
Basically it is
transformed

Some documentation exists as __doc__ strings, which python help does not 
necessarly detect. So if there is no documentation at all try:
print foo.__doc__

Sometimes it is necessary to construct an obeject before one can see the 
associated methods:

$ r = pygsl.rng.rng()
$ help(r)
$ print r.__doc__
$ print dir(r)

We tried to follow GSL API as close as possible, but still leaving it 
pythonic.

Unfortunately I have not found the time to write a proper documentation, 
but would support anybody starting it.

Hope that make things more clear.

I also just noted that the wavelet transform had a bug if called without 
arguments. That is now fixed in CVS.

If you have questions just mail me, I will try to answer.

Sincerely yours
        Pierre

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
pygsl-discuss mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pygsl-discuss

Reply via email to