Question

In the MATLAB Command Window, if you type the following commands, what would be the result?
x = 1.0;
for i = 1:1:5
y=x^2+100;
disp([x', y'])
x = x + 1;
end

Answer

This answer is hidden. It contains 20 characters.