grayplot_properties - description of the grayplot entities properties
The Grayplot entity is a leaf of the graphics entities hierarchy. It represents 2D plots of surface using colors and images (see Xgrayplot , Matplot and Matplot1 ).
set("figure_style","new") //create a figure
m=5;n=5;
M=round(32*rand(m,n));
grayplot(1:m,1:n,M)
a=get("current_axes");
a.data_bounds= [-1,-1;7,7]
h=a.children
h.data_mapping="direct";
// A 2D ploting of a matrix using colors
xbasc()
a=get("current_axes");
a.data_bounds= [0,0;4,4];
b=5*ones(11,11); b(2:10,2:10)=4; b(5:7,5:7)=2;
Matplot1(b,[1,1,3,3]) ;
h=a.children
for i=1:7
xclick(); // click the mouse to sets Matplot data
h.data=h.data+4;
end
set , get , delete , grayplot , Matplot , Matplot1 , graphics_entities ,
Djalel ABDEMOUCHE