Assume that I have a fricas (1) -> L := [[- 1,
Type: List(List(Integer))
(which is calculated from some earlier expressions).
How can I convert it into a fricas L2:=[concat([L.i.j for j in 1..#L.i],
Type: List(List(Integer))
Namely I want to have a matrix like: fricas A := matrix L2
Type: Matrix(Integer)
so that I can do fricas vp := vector[p0,
and fricas vp * A
Type: Vector(Polynomial(Integer))
|