How do I find max values in a vector
8 ビュー (過去 30 日間)
古いコメントを表示
I have a vector like this: v=[1, 3, 5, 2, -4, -3, -1, 2, 3, 1, 2, -3, -2, -4]
I need the max value of every positive sequence and min value of every negative sequence
I need a vector like this a=[5, -4, 3, -4]
thanks for help
0 件のコメント
回答 (1 件)
KSSV
2021 年 10 月 25 日
v=[1, 3, 5, 2, -4, -3, -1, 2, 3, 1, 2, -3, -2, -4] ;
iwant = [max(v(v>0)) min(v(v>0)) max(v(v<0)) min(v(v<0))]
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!