Could someone tell me why one of my graphics (blue) doesn't show on the plot and the other (black) beggins too early (to avoid this I tried to put those values as NaN and it worked with the red graphic)? I think it's because I'm not writing the function for the black correctly. I want to make the average for 21 years from the data I'm given, so the first 10 correspondent x can't have values on the graphic. A
C = textscan(fid,'%f %f %f','headerlines',32,'commentstyle','--');
x = C{1};
y1 = C{2};
y2 = C{3};
z = C{2};
sum_21mt = 0;
for i = 11:153
sum_21mt = soma_21mt + z(21);
med_21mt = soma_21mt/21;
end
y1(y1==-99.99) = NaN;
y2(y2==-99.99) = NaN;
z1 = z(1:10);
z2 = z(154:length(z));
z1 = NaN;
z2 = NaN;
plot(x, y1, 'b-', x, y2, 'r-', x, z, 'k-');
z1andz2here? – Oli Charlesworth Dec 24 '11 at 13:39soma_21mtin the loop and the loop doesn't depend oniat all, the loop is either completely redundant (you're basically doingx=1+2a million times), or the loop isn't doing what you want it to do? – mathematical.coffee Dec 24 '11 at 13:44