Hi. I 've tried to draw 4x6 subplots in 1 figure. But the problem is ...
When I execute code
======================================================================
pos1 = [0.025 0.68 0.14 0.17];
subplot(4,6,1 , 'Position', pos1)
pos2 = [0.19 0.68 0.14 0.17];
subplot(4,6,2 , 'Position', pos2)
pos3 = [0.35 0.68 0.14 0.17];
subplot(4,6,3 , 'Position', pos3)
pos4 = [0.51 0.68 0.14 0.17];
subplot(4,6,4 , 'Position', pos4)
pos5 = [0.68 0.68 0.14 0.17];
subplot(4,6,5 , 'Position', pos5)
pos6 = [0.85 0.68 0.14 0.17];
subplot(4,6,6 , 'Position', pos6)
======================================================================
What I want is draw 6 subplots in line. But there are only 5 subplots(1,2,3,4,6). 5th subplot is omitted.
So When I entered the 5th subplot code through the command window, 6 subplots were drawn.
Why 5th subplot is omitted when I run the code?