X label cuts off in logscale

2 ビュー (過去 30 日間)
Niklas Kurz
Niklas Kurz 2021 年 1 月 28 日
コメント済み: Star Strider 2021 年 6 月 8 日
I assume the x numbers are not shown beacause the plot is squeezed too tight. How to fix it?
f = 1:0.01:20000;
db = zeros(length(f),1);
X = [f' db]; %StarStrider colormap
cm = colormap(jet);
X(end,2) = NaN;
c = (X(:,1));
p1 = plot(f,db,'b');
p2 = patch(X(:,1), X(:,2), c, 'EdgeColor','interp','LineWidth',4);
set(gca, 'XScale', 'log')
set(gca, 'FontSize',24)
legend('Frequenzgang einer idealen Box')
xlabel('Frequenz in Hz','Interpreter','latex')
ylabel(' Lautstaerke in dB','Interpreter','latex')
axis([1 20000 -20 20])
grid on
  1 件のコメント
Niklas Kurz
Niklas Kurz 2021 年 1 月 28 日
I I want to custom xticks it gives me error and closest match:
/Applications/MATLAB_R2020a.app/toolbox/matlab/graph3d/xticklabels.m

サインインしてコメントする。

採用された回答

Star Strider
Star Strider 2021 年 1 月 28 日
I do not understand what you want for the x-tick labels.
First, run your code with this to see what it does, and then adapt this to do what you want:
set(gca, 'XTick',logspace(0, log10(20000), 5), 'XTickLabel',1:5)
In general, it is necessary to define both the tick locations themselves, and the tick labels.
The labels can also be text (character arrays) or strings as cell arrays. That is sllightly more complicated, so I will not discuss it now, however I can help you with it if that is what you want to do.
  10 件のコメント
Niklas Kurz
Niklas Kurz 2021 年 6 月 8 日
編集済み: Niklas Kurz 2021 年 6 月 8 日
Thank you for laying emphasis on that difference. It still is a secret to my why that one line (NaN) causes Matlab to reduce patch to just the plotted line. It seems like the refecrence point is mimiced by the data points this way. What is kind of what we wanted.
Star Strider
Star Strider 2021 年 6 月 8 日
As always, my pleasure!
I have long since surrendered to MATLAB being MATLAB and to just hang on and enjoy the experience!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGrid Lines, Tick Values, and Labels についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by