MATLAB: Change headers on the table result

workspace

Hello,
So imagine if i have this calculation to make
A = [1,2,3,4,5,6,7,8,9,10];
B = zeros(1,10);
for j = 1:10
B = 1+A;
end
The end result is a matrix B like B = 2 3 4 5 6 7 8 9 10 11.
In the workspace I have a table B to open, it open "like" the tables from excel, I was wondering if I can change the header to let's say X1,X2,X3,…Xn, being n the number of columns of A.
Thanks for your time, Tiago

Best Answer

B = 2:11;
out = array2table(B,'v',cellstr(string('X') + (1:numel(A))'))
Related Question