I convert list to matrix in Maxima in following way:
DataL : [ [1,2], [2,4], [3,6], [4,8] ];
DataM: apply('matrix,DataL);
How to do it the other way ? How to convert given matrix DataM into list DataL ?
|
I convert list to matrix in Maxima in following way:
How to do it the other way ? How to convert given matrix DataM into list DataL ?
| ||||
|
feedback
|
|
I'm far from a Maxima expert, but since you asked me to look at this question, here's what I have after a quick look through the documentation. First, looking at the documentation on matrices yielded only one way of turning matrices in to lists, which is
This is clumsy and probably inefficient. Using the underlying Lisp structure in Maxima (and analogy to Mathematica, which I'm more familiar with) you can examine the heads of
Then to convert between the two structures, you can use substpart
Using | |||
feedback
|