Hi,
I made my third party packaging system and packages installable by
extracting a single zip file: Extract the file and all the software is
immediately available.
Only maxima 5.28.0 and 5.30.0 on Win32 are supported.
(because I could not find other Windows versions on
sourceforge.)
A file intro.wxm is included to see how it works.
Get the file and read where to unzip it to
(short answer: your home folder) at
http://www.johnlapeyre.com/mext_windows/
Here are some examples:
(%i1) load(mext2)$
(%i2) nintegrate(1/sqrt(1-x)*exp(-x),[x,0,inf],info->false);
(%o2) 1.076159013825558 - 0.65204933217299 %i
(%i3) nintegrate(1/sqrt(1-x)*exp(-x),[x,0,inf],calls->short);
(%o3) [1.076159013825558 - 0.65204933217299 %i, 1.8719703565039936E-10,
1026,
no problems, [quad_qagi, quad_qagp, quad_qagi,
quad_qagp]]
(%i4) ? nintegrate [ prints doc and examples for nintegrate ]
Four is the minimum number of calls to quadpack required to compute the
integral.
----
(%i1) load(mext)$
(%i2) mext_test(pw);
Running tests in
/home/jlapeyre/.maxima/mext/v5.31.0-gcl-v2.6.8/pw/rtests/rtest_pw.mac:
227/227 tests passed ...
----
(%i1) load(mext2)$
(%i2) ? table [ prints doc and examples, etc. for table ]
(%i3) table(x^y, [x,1,2], [y,1,2]);
(%o3) [[1, 1], [2, 4]]
Have fun,
-- John