how to determine the difference in the price scale

조회 수: 2 (최근 30일)
piero
piero 2023년 8월 17일
댓글: Voss 2023년 8월 17일
scale sx is:
0
5000
10000
15000
how can i detect this difference? (5.000)
i use this code to create this graph:
plot(Ax_Eq,XDates,sis_,'DisplayName','OneContract','Color','blue');
ytickformat(Ax_Eq,'usd');
axis(Ax_Eq, 'tight');
disableDefaultInteractivity(Ax_Eq)
grid(Ax_Eq,"on");

채택된 답변

Voss
Voss 2023년 8월 17일
dt = Ax_Eq.YTick(2) - Ax_Eq.YTick(1);
  댓글 수: 4
piero
piero 2023년 8월 17일
very good..thank
Voss
Voss 2023년 8월 17일
You're welcome!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Exploration에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by