我想繪製直方圖並將其顯示在軸上。軸位於uipanel中。 如何在軸上顯示直方圖?如何在matlab GUI中將繪製的直方圖顯示到座標軸上?
這是我的代碼。它只是在新窗口中顯示繪製的直方圖。
fontSize = 20;
[pixelCount_Merah grayLevels_Merah] = imhist(Merah);
%subplot(2, 2, 2);
bar(pixelCount_Merah, 'r');
title('Histogram of Merah', 'Fontsize', fontSize);
xlim([0 grayLevels_Merah(end)]); % Scale x axis manually.
有什麼建議?