Hello @ova4
if you only want to plot the colormap of the channels, you can try something like this (it is not pretty but it will work):
MIN = 15; MAX = 36; CMAP=gray();
plotchannels(md,md.results.TransientSolution(end).ChannelArea,'min',MIN,'max',MAX, 'colormap', CMAP);
colormap(CMAP); caxis([MIN MAX]);
colorbar;
note that this function is a work in progress... if there are things you would like to change let us know!
Mathieu