> rk from the package dynamics returns a list of lists. Something like:
>
> [[0, 1 , 3],[1 , 2, 5]]
>
> I would like to plot that, and for that reason need it as a matrix,
> like:
>
> matrix([0,1,3],[1,2,5])
(%i4) [[0, 1 , 3],[1 , 2, 5]];
(%o4) [[0,1,3],[1,2,5]]
(%i5) funmake('matrix,%);
(%o5) matrix([0,1,3],[1,2,5])
--Barton