Getting an error for setting gca tick marks

조회 수: 13 (최근 30일)
Brianna Florio
Brianna Florio 2018년 7월 9일
댓글: Adam 2018년 7월 9일
In my code, I have:
set(gca,'YTick',energy_pixel);
I'm getting an error message, saying: 'Value must be a vector of type single or double whose values increase'. However, the vector for 'energy_pixel' is:
[0, 0, 0, 0, 71, 188, 352, 595, 996]
Can someone tell me whats wrong? I can't change the values, so how can I work around this problem?
  댓글 수: 3
Brianna Florio
Brianna Florio 2018년 7월 9일
@Adam, I can see it doesn't increase, but I was hoping there was still a way to do this without manipulating the data. Do you know what I can do to work around this problem?
Adam
Adam 2018년 7월 9일
I don't know what you are trying to do. Why do you want 4 ticks at 0?
set( gca, 'YTick', unique( energy_pixel ) )
may give what you want, but it's hard to say. If you really want 4 0's equally spaced at some interval along the x axis then you'll have to do something more involved because you are basically redefining the mapping of the x-axis to be non-linear.

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Graphics Object Properties에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by