Find index of points between two points?

4 ビュー (過去 30 日間)
Rubel Ahmed
Rubel Ahmed 2020 年 11 月 12 日
編集済み: per isakson 2020 年 11 月 13 日
Hi all,
I have an Array A
A =[1,2,5,8,4,7,6,3,12].
I want to find the index of those elements which grater than element 5 and less than 7.
I am writting like this but failed to get solution.
Y_min=5;
Y_max=7;
idx = find((A>Y_min) && (A<Y_max));

回答 (1 件)

per isakson
per isakson 2020 年 11 月 13 日
編集済み: per isakson 2020 年 11 月 13 日
>> A =[1,2,5,8,4,7,6,3,12];
>> Y_min=5;
>> Y_max=7;
>> idx = find((A>Y_min) & (A<Y_max));
>> idx
idx =
7

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

タグ

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by