plot log with factor 20

2 ビュー (過去 30 日間)
Ti-Quanh Ngu
Ti-Quanh Ngu 2021 年 1 月 14 日
回答済み: Bobby Fischer 2021 年 1 月 14 日
Hello,
how can I plot a scale like in this picture?

採用された回答

Bobby Fischer
Bobby Fischer 2021 年 1 月 14 日
Hello
a=1.03;
h=(a^200-a^20)/9;
ypoints=a^(20):h:a^200;
xpoints=log(ypoints)./log(a);
figure(1)
close(1)
figure(1)
hold on
axis([0 220 -1 1])
plot([20 200],[0 0],'b-','linewidth',3)
z=0.05;
for k=1:10
plot([xpoints(k) xpoints(k)],z*[-1 1],'b','linewidth',2)
end
text(20-1,-1.5*z,'20')
text(200-2,-1.5*z,'200')

その他の回答 (0 件)

カテゴリ

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

タグ

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by