How can i plot peaks?

조회 수: 12 (최근 30일)
m c
m c 2013년 4월 24일
Hi, first off all i want to excuse me if a post wrong. I'm new on mathworks and i've got a big problem.I want to make a GUI in matlab with axes and i don't know how to put on graphic the values of the maximum and minimum peaks. A bit of program look like this:
S=0.275
t=0:0.1:6;
n=10/64;
omega=(2*pi*n)
d=S*(1-cos(omega*t))/2
plot(handles.axes1,omega*t,d)
What i want is to show me on the axes the maximum and minimum values for "d" whatever values i've got to put on S,t,omega etc. Hope you can help me. Thx alot and excuse me for english issues.

채택된 답변

m c
m c 2013년 4월 24일
편집: m c 2013년 4월 24일
Thank you very much, but now is show me only de maximum circle...It's a start, but i want to show on the graphic the value also...Thx again!
Please acces the link to see the graphic!
and, i think, it's show's me only one of two circle(max or min), not all in same time
  댓글 수: 3
m c
m c 2013년 4월 24일
It's work, but i have two more problems:i need to push the button 4-5 times to show me the entire graphic, at first click it's show me only the max circle....and the secont problem is to align the value on the graphic(i've got 3 diferent axes and for all it show's me the values on the middle one).Thank you very much!
m c
m c 2013년 4월 24일
편집: m c 2013년 4월 25일
I think i need to write something different at other's two axes because it's show's all values on one graphic .. but i don't see were to modify!

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

추가 답변 (3개)

Mahdi
Mahdi 2013년 4월 24일
MaxValue=max(d);
IndexMaxValue=find(d==MaxValue)
% Creates a red circle where the max is.
plot(handles.axes1, omega.*t(IndexMaxValue), MaxValue, 'ro')
You can follow the same logic for the min value, just use min(d) instead.

m c
m c 2013년 4월 26일
편집: m c 2013년 4월 26일

m c
m c 2013년 4월 27일
편집: m c 2013년 4월 27일
Anybody can help me ? I need help!Please! I need to write something on the text code because it show's me all values on the last axes.I find on your site something with parent function but i don't know how to use it.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by