Hi, the analysis worked for me. If you create scatter plots in the Vector validation menu, then not every single vector is plotted. The points are randomly selected from the full dataset, because otherwise Matlab used to freeze in the past.
if size(datau,2)>20000 %more than 20000 value pairs are too slow in scatterplot.
pos=unique(ceil(rand(21000,1)*(size(datau,2)-1))); %select random entries...
scatter(gca,datau(pos),datav(pos), 'b.'); %.. and plot them
set(gca,'Yaxislocation','right','layer','top');
else
scatter(gca,datau,datav, 'b.');
set(gca,'Yaxislocation','right','layer','top');
end