フィルターのクリア

How can i plot peaks?

9 ビュー (過去 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 Center および File ExchangeAnnotations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by