Question: Plot RowSpace of a 2-by-3 Matrix in 3D

Consider matrices A and B below; how one can plot basis vectors of column space in 2d, and plane or line spanned by basis of row space in 3D?

with(LinearAlgebra):
A := Matrix([[2, 3, 5], [1, 2, 7]]);

ColumnSpace(A);
RowSpace(A);
 
B := Matrix([[6, 4, 2], [3, 2, 1]]);
 
ColumnSpace(B);
RowSpace(B);
 
Please Wait...