I'm using Octave 3.8.1.
Consider the following code:
I=4;
J=6;
for j=1:J
for i=1:I
g=subplot(I,J,(i-1)*J+j);
imagesc(rand(20,20));
end
end
This produces the following plot:
Why aren't the subplots equally sized? What do I need to do to get them equally sized?
I'm using the default FLTK module for plotting.