Matrix: finding x in A.x=b



> Is there any way to find vector x in A.x=b simply?

What about something like this:

    (%i10) load(linearalgebra)$
    (%i11) A:matrix([1,2],[3,4])$
    (%i12) b:matrix([1],[2])$
    (%i13) lu_backsub(lu_factor(A, floatfield), b);