
How to get exact position (red point)?
3 ビュー (過去 30 日間)
古いコメントを表示
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.
0 件のコメント
回答 (1 件)
Orion
2014 年 11 月 25 日
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 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!