How to get exact position (red point)?

Please see the attached file. It is a time series plotted from a very long row vector (1x10000), and I want to locate the position (red point) where a "large" fluctuation occurs. Any MATLAB function or simple way to do it? Thanks.

回答 (1 件)

Orion
Orion 2014 年 11 月 25 日

0 投票

If you know the "time zone" where you have this minimum, just use min on this interval.
something like :
[Value,Index] = min(YourTimeSeriesValues(2500:4500));

3 件のコメント

Vic
Vic 2014 年 11 月 25 日
what if I have many such time series, and each of them has an unknown "time zone", and I wish to locate all red points in just one MATLAB program. Do you think it is possible?
Vic
Vic 2014 年 11 月 25 日
and red points may be max or min...
Orion
Orion 2014 年 11 月 25 日
Then you're gonna need to analyse the entire vectors.
see extrema, you'll get all the locals min and max.
But then, it's up to you to treat them the way you need it.

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeMATLAB についてさらに検索

質問済み:

Vic
2014 年 11 月 25 日

コメント済み:

2014 年 11 月 25 日

Community Treasure Hunt

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

Start Hunting!

Translated by