Matrix from variables
If I defined variables a=5;
b=3;
what is the fastest/most elegant way to get? m = [5,3]
Is there something better thanm= Matrix(Eval({a,b}));
And why doesm=[Eval(a),Eval(b)]
not work?
Any links to related posts are welcome