Thank you. I got the following answers.
In[16]:= xt = Table[{NSolve[x^2 - .001 i == 0 && x > 0]}, {i, 8}];
In[21]:= {
{xt1 = xt /. {{Rule[a_, b_]}} :> b;},
{\[Placeholder]}
}
Out[21]= {{Null}, {\[Placeholder]}}
In[23]:= xt1
Out[23]= {{0.0316228}, {0.0447214}, {0.0547723}, {0.0632456}, \
{0.0707107}, {0.0774597}, {0.083666}, {0.0894427}}
Now, how can I get rid of the parenthesis so that the answer will look like
{0.0316228, 0.0447214, 0.0547723, 0.0632456, \
0.0707107, 0.0774597, 0.083666, 0.0894427}
so that I can list plot xt1 with another table, like
yt1=(1, 2, 3, 4, 5, 6, 7, 8}
?
Much thanks for your time.