- #1
- 1,235
- 18
Title says it all. I have two matrices representing 2D surfaces, and I am using subplot to compare them in the same plat area, however, each has its own colorbar so comparison is not so easy to do by eye.
I'm pretty weak at figure handles, can someone give me a hint to do this? Thanks
Thanks
I'm pretty weak at figure handles, can someone give me a hint to do this? Thanks
Code:
subplot(1,2,1); h1 = pcolor(final);
set(h1,'EdgeAlpha',0); colorbar
subplot(1,2,2); h2 = pcolor(initial);
set(h2,'EdgeAlpha',0); colorbar
Thanks