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.
可能な限り最良の解決策を学びたいというかなり単純な例があります。私はデータセットを持っています:
depth = [0:0.5:20];
2 から 5 など、特定の範囲から「深さ」のみを選択したいのですが、次の方法でこれを行うことができます。
d1 = find(depth == 2,1,'first'); d2 = find(depth == 5,1,'first'); depth = depth(d1:d2);
これを行う代替のよりクリーンな方法はありますか?
論理インデックスを使用するだけです:
depth(depth >= 2 & depth <= 5)