Matlab でいくつかのデータをプロットしています。プロットにカラーバーを追加すると、範囲ラベルがプロットに繰り返し描画されます。最小限の作業例を次に示します。
events = 1000000;
x1 = sqrt(0.05)*randn(events,1)-0.5; x2 = sqrt(0.05)*randn(events,1)+0.5;
y1 = sqrt(0.05)*randn(events,1)+0.5; y2 = sqrt(0.05)*randn(events,1)-0.5;
x= [x1;x2]; y = [y1;y2];
%For linearly spaced edges:
xedges = linspace(-1,1,64); yedges = linspace(-1,1,64);
histmat = hist2(x, y, xedges, yedges);
figure; pcolor(xedges,yedges,histmat'); colorbar ; axis square tight ;
hist2
ここから関数を取得できます。
http://www.mathworks.com/matlabcentral/fileexchange/9896-2d-histogram-calculation/content/hist2.m
これは、コードを実行した結果です。
上記のコードから colorbar コマンドを削除すると、次のようになります。
この問題が発生する理由は何ですか? 以前にもこの問題に遭遇しました... 私のオペレーティング システムは 64 ビットの Windows 7 Enterprise で、Matlab R2012b (8.0.0.783) を使用しています。
助けてくれてありがとう:)