Adding tick marks without overriding existing marks

조회 수: 13 (최근 30일)
Andrew Jones
Andrew Jones 2016년 12월 3일
댓글: Andrew Jones 2016년 12월 4일
I would like to add a tick mark to a semilogx() plot to indicate the -3dB point of my transfer function. I know that I can use (gca,'XTick',[ ... ]) to add tick marks at specific frequencies; however, this forces the plot to ONLY display my specified tickmarks and completely removes the existing grid. is there anyway to add a tick mark overlay that maintains the standard semilog grid?
Note: the professor for this class had figures in his notes that do what I would like to do, but he has a pretty strict no-contact policy during take-home-exam weekends.

채택된 답변

Stephen23
Stephen23 2016년 12월 3일
Play around with this:
>> x = 5.7;
>> yV = get(gca,'ylim');
>> text(x,yV(1),num2str(x),'VerticalAlignment','top','HorizontalAlignment','center')
>> line([x,x],yV)

추가 답변 (1개)

Walter Roberson
Walter Roberson 2016년 12월 3일
current_ticks = get(gca, 'XTick')
new_ticks = [current_ticks, specific_frequencies];
set(gca, 'XTick', new_ticks);
Or you can line() at the appropriate location, passing in 'Clipping', 'off') if you want the tick line to be visible outside the drawing area.
  댓글 수: 2
Andrew Jones
Andrew Jones 2016년 12월 3일
편집: Andrew Jones 2016년 12월 3일
Not quite what I'm looking for. Additionally, this only works if the specific_frequencies are greater than every element of current_ticks. I tried line(), but apparently I don't have a firm enough understanding of that particular function.
I've attached a picture of what I am wanting to achieve. The plot has a user-defined tick at 5.7 degrees, but all of the dotted grey lines from the semilogx grid are still present. I have tried manually ticking for each of the standard semilog ticks, but then they all come out solid instead of dotted and it's harder to find the frequency I actually want to draw attention to.
Walter Roberson
Walter Roberson 2016년 12월 3일
If it complains about the order then sort() new_ticks

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

카테고리

Help CenterFile Exchange에서 Grid Lines, Tick Values, and Labels에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by