This plot is possible in MATLAB but I would like to do this in matplotlib.
See attached fig.
In matlab the code is:

a=peaks(20);
b=peaks(20)+2*rand(20);
c=rand(20);
figure; hold on;
ha=pcolor(a);
hb=pcolor(b);
hc=pcolor(c);
set(hb,'zdata',0*b+5)
set(hc,'zdata',0*c+10)

This plot can then be rotated, as is done in the figure, to what I want to
accomplish in matplotlib.
http://old.nabble.com/file/p33568798/set_matlab_image.jpg
set_matlab_image.jpg 

Is this possible, if so, how?

-- 
View this message in context: 
http://old.nabble.com/3D-layered-plot-tp33568798p33568798.html
Sent from the matplotlib - users mailing list archive at Nabble.com.


------------------------------------------------------------------------------
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to