필터 지우기
필터 지우기

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

조회 수: 2 (최근 30일)
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

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by