ylimの範囲を変更すれば、この縦軸のメモリである1 , 2 を保ちながらメモリ間隔を狭める事が出来ます。
figure; plot(0,0); hold on;
for i=1:17
scatter(randi(20),randi(2),50,'b','filled');
end
ylim([-5 10]); % ylim([0.5 2.5]); より変更
yticks([1 2]);
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!