Sorry the code was slightly wrong. This is the corrected version. I basically want 8 different graphs and they are different according to "i".
fig = figure();
x = T2{:,10};
for i = 2:9
y = T2{:,i};
for j = 1:8;
axj = subplot(2,4,j);
scatter(axj,x,y,'filled');
end;
end;