How can i plot peaks?

1 次查看(过去 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