I have a set of vectors in the shape of a n by m matrix from which I would like to calculate m normplots superimposed. This is easy:
c=rand(100,10);
figure
normplot(c)
The normplot automatically colors each column of data, but I would like to control how they are colored. Specifically I need to make them greyscale. The first set of data (column 1) should be white (or close to white) and the last one black.
