フィルターのクリア

MATLAB 2019b Update 1 Function semilog doesn't work on macOS Catalina

2 ビュー (過去 30 日間)
Yiqian Qian
Yiqian Qian 2019 年 10 月 26 日
コメント済み: Star Strider 2019 年 10 月 27 日
When i am trying to plot semilog figures, the semilog* function works as no difference with the normal plot function.
My system is macOS Catalina, MATLAB version is 2019b update 1.

採用された回答

Star Strider
Star Strider 2019 年 10 月 26 日
It could be that your data values are not much different, so semilogx or semilogy may not seem different.
To test that hypothesis, try this and see if there is a difference between the figures:
x = linspace( 1, 10,10);
y = logspace(-2, 2, 10);
figure
plot(x, y)
grid
figure
semilogy(x, y)
grid
Experiment to get the result you want.
  12 件のコメント
Yiqian Qian
Yiqian Qian 2019 年 10 月 27 日
Thanks bro
Star Strider
Star Strider 2019 年 10 月 27 日
As always, my pleasure!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeEnvironment and Settings についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by