list->sequence



On Mon, 14 Feb 2005 18:39:36 +0100 (CET), Fabrizio Caruso
 wrote:
> Is there a command to convert a list of lists into a matrix?

    apply('matrix,[[a,b],[c,d]]);

or in general

    apply('f,[a,b,c]) => f(a,b,c)