Question: how to display table in maplet

i'am using maplet shortcut in maple 

but it did not show in table form, it only gives final answer.

 

use DocumentTools in 
with(LinearAlgebra):with(VectorCalculus):with(linalg):

# F1,F2,F3 are my equations
F1:=Do(%f1);
F2:=Do(%f2);
F3:=Do(%f3);

# these is my initial point
X1:=Do(%x1);
X2:=Do(%x2);
X3:=Do(%x3);

# the whole operation
F := Matrix(1 .. 3, 1 .. 1, [[F1], [F2], [F3]]);
J := Jacobian([F1, F2, F3], [x1, x2, x3]);
eps := 0.1e-8;
count := 0;

x1new := X1; x2new := X2; x3new := X3;
xNew := Matrix(1 .. 3, 1 .. 1, [[x1new], [x2new], [x3new]]);
d := 1;

while d > eps do
x1old := x1new; x2old := x2new; x3old := x3new;
xold := Matrix(1 .. 3, 1 .. 1, [[x1old], [x2old], [x3old]]);
Fnew := evalf(subs(x1 = x1old, x2 = x2old, x3 = x3old, F));
Jnew := evalf(subs(x1 = x1old, x2 = x2old, x3 = x3old, J));
JnewInv := inverse(Jnew);
ynew := JnewInv.(-Fnew);
xnew := ynew+xold;
d := abs(norm(xnew-xold, infinity));
x1new := xnew(1); x2new := xnew(2); x3new := xnew(3);
xNew := xnew;
count := count+1;

# the value that should be in the form of table, note: i'am using 3 mathematical expressions box
Do(%table1=xnew(1));
Do(%table2=xnew(2));
Do(%table3=xnew(3));

end do;

end use;
 
can this be done using other technique?
Please Wait...