Fwd: Newbie help!



---------- Forwarded message ----------
From: Harry Kanda 
Date: 25-Jun-2005 21:27
Subject: Newbie help!
To: maxima@www.math.utexas.edu


Hello all,

I hope this is an easy question to answer.. basically i want to save a
file with a series of functions on..

Secondly i'd like to get all the output from this file

i.e.. i'd type something like load(url)
and get the complete output for this file...

secondly.. if this is possible.. surpress some of the output.. so that
only one type of function and their results are shown in my xMaxima
terminal!

hopefully this makes sense!

Thanking anyone who can answer me and help!

Harry

PS - Functions are,
Kill(all);

a: (5*x-1)/((x+1)*(x+2));
b: partFrac(a,x);
isPartFrac(b,a,x);
factor(b);

a: ( 7*x + 25)/((x+4)*(x+3));
b: partFrac(a,x);
isPartFrac(b,a,x);
factor(b);

a: (11*x+1)/((x-1)*(2*x+);
b: partFrac(a,x);
isPartFrac(b,a,x);

a: (3-x)/(x^2 - 2*x +1);
b: partFrac(a,x);
isPartFrac(b,a,x);

a: (-1) * (7*x -15)/((x-1)^2);
b: partFracc(a,x);
isPartFrac(b,a,x);

and i want the results from isPartFrac(b,a,x) from this file!