Post Reply 
How to convert a single row list to matrix or vector? (Solved)
11-19-2015, 03:32 PM (This post was last modified: 11-19-2015 03:37 PM by Han.)
Post: #2
RE: How to convert a single row list to matrix or vector?
(11-19-2015 03:18 PM)cclinus Wrote:  Hi,
How to convert a single row list to matrix or vector in program?
For example A:={1,2,3,4}

list2mat doesn't work for {1,2,3,4}.
I can use M0:={1,2,3,4} to obtain a vector.
But, I want to use local variable only.
Please help!

Regards,

list2mat(list, width) - if list has n elements, then this creates a matrix of dimension (n/width) x width

list2mat({1,2,3,4},2) makes a 2x2 matrix using 1,2 for row 1 and 3,4 for row 2.
list2mat({1,2,3,4},4) makes a 1x4 matrix using 1,2,3,4 for the single row. If you want a row vector (i.e. not a 1x4 matrix) you can do something like:

m:=list2mat({1,2,3,4},4);
m(1); // returns just the first row [ 1, 2, 3, 4 ]

Graph 3D | QPI | SolveSys
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: How to convert a single row list to matrix or vector? - Han - 11-19-2015 03:32 PM



User(s) browsing this thread: 1 Guest(s)