Different tick values on same axis

4 ビュー (過去 30 日間)
Alexandra Roxana
Alexandra Roxana 2023 年 1 月 4 日
コメント済み: Star Strider 2023 年 1 月 4 日
I want to use xticks using different steps. From a to a+g the step dxs, from a+g to b-g the step dxf and from b-g to b again the step dxs. Can it be used in the same command? Thank you in advance.
a=0;
b=4;
c=0;
d=6;
g=1;
dxs=0.2;
dxf=0.25;
dy=0.5;
figure(1)
plot([a b b a a],[c c d d c])
hold on
axis([a-1 b+1 c-1 d+1])
hold on
plot([a+g b-g b-g a+g a+g],[c c d d c])
hold on
axis([a+g-1 b-g+1 c-1 d+1])
grid on
axis tight
axis equal
xticks([a:dxs:a+g])
yticks([c:dy:d])

採用された回答

Star Strider
Star Strider 2023 年 1 月 4 日
編集済み: Star Strider 2023 年 1 月 4 日
See if the xticks call in:
xticks([a+g:dxf:b-g (b-g+dxs):dxs:b])
does what you want —
a=0;
b=4;
c=0;
d=6;
g=1;
dxs=0.2;
dxf=0.25;
dy=0.5;
figure(1)
plot([a b b a a],[c c d d c])
hold on
axis([a-1 b+1 c-1 d+1])
hold on
plot([a+g b-g b-g a+g a+g],[c c d d c])
hold on
axis([a+g-1 b-g+1 c-1 d+1])
grid on
axis tight
axis equal
xticks([a:dxs:a+g (a+g)+dxf:dxf:b-g (b-g)+dxs:dxs:b]) % NEW
Check = xticks % Check Values (Optional)
Check = 1×19
0 0.2000 0.4000 0.6000 0.8000 1.0000 1.2500 1.5000 1.7500 2.0000 2.2500 2.5000 2.7500 3.0000 3.2000 3.4000 3.6000 3.8000 4.0000
% xticks([a:dxs:a+g])
yticks([c:dy:d])
The xticks argument values have to increase, so two adjacent values of (b-g) are not permitted.
.
  5 件のコメント
Alexandra Roxana
Alexandra Roxana 2023 年 1 月 4 日
I've already put it, no worries!
Star Strider
Star Strider 2023 年 1 月 4 日
Thank you!

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

その他の回答 (1 件)

Bora Eryilmaz
Bora Eryilmaz 2023 年 1 月 4 日
編集済み: Bora Eryilmaz 2023 年 1 月 4 日
You can generate a ticks vector, which should be sorted and with unique elements:
a=0;
b=4;
c=0;
d=6;
g=1;
dxs=0.2;
dxf=0.25;
dy=0.5;
figure(1)
plot([a b b a a],[c c d d c])
hold on
plot([a+g b-g b-g a+g a+g],[c c d d c])
grid on
axis tight
axis equal
% Set axis limits
ax = gca;
ax.XLim = [a b];
ax.YLim = [c d];
% Ticks vectors
x_ticks = unique([a:dxs:(a+g), (a+g):dxf:(b-g), (b-g):dxs:b], 'stable');
xticks(x_ticks)
yticks([c:dy:d])
  1 件のコメント
Alexandra Roxana
Alexandra Roxana 2023 年 1 月 4 日
Thank you for your answer!

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

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

タグ

製品


リリース

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by