(%i11) load("multiadditive")$
(%i12) declare(f, threadable)$
(%i13) f([a,b,c]);
(%o13) [f(a),f(b),f(c)]
(%i14) remove(f,threadable)$
(%i15) f([a,b,c]);
(%o15) f([a,b,c])
Barton
-----maxima-bounces at math.utexas.edu wrote: -----
Mathematica has an attribute Listable which means that
a function with this attribute is automatically threaded
over a list that is an argument. What is the name of
the corresponding property in Maxima, and how does
one find a list a functions with that property.