Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
time時間値を含む、というベクトルがあります。time値がthresholdxとthresholdの間にあるインデックスのベクトルを取得したいと思いますy。
time
x
y
これは間違いなく簡単なことですが、ここではMatlab構文に少し苦労しています。どんな助けでも大歓迎です。
Blz
time=5:20 idx = find(time > 10 & time < 15) % indices values=time(time(:)>10 & time(:)<15) % values
与える
time = 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 idx = 7 8 9 10 values = 11 12 13 14