Hey,
I do have a data file 49 coloumns, 9 rows with data flagged as 99.99. Now I would like to plot these data using pcolor excluding the 99.99-data. (Saying, leaving this space white on the plot)
I don't know if this will work for a pcolor plot but it works for normal line graphs. I am assuming the 99.99 values are EXACTLY 99.99.
Code:
% 'A' is the matrix containing the data
% find the matrix indeces of the 99.99 data
idx = find(A==99.99);
% replace the 99.99 vales with the value 'NaN'
A(idx) = NaN;
% plot the data
pcolor(A);
Matlab interprets 'NaN' as 'Not a Number' and leaves that bit blank.