我想在極坐標直方圖文字下方添加文字。
最初,我有一個常規的直方圖,我可以使用標籤放置文字如下:
histogram_orientation_of_blobs = histogram(orientation, 'Normalization','probability');
xlabel(['orientation ($^{\circ}$)'],'Interpreter','latex','fontsize', 12)
但是,如果我使用
histogram_orientation_of_blobs = polarhistogram(orientation, 'Normalization','probability');
xlabel(['orientation ($^{\circ}$)'],'Interpreter','latex','fontsize', 12)
我不明白。我猜這是因為極坐標直方圖上沒有 xlabel,但是如何在極坐標直方圖下方添加該圖的描述?