フィルターのクリア

How to cut a matrix?

4 ビュー (過去 30 日間)
Daniel Tanner
Daniel Tanner 2020 年 5 月 15 日
コメント済み: Ameer Hamza 2020 年 5 月 15 日
I have a matrix that is 35000-by-11. The first column specifies a depth and the next ten specify data at that certain depth. I am only interested in data between the depths of 241 and 285. How do I identify which elements in the column are in those regions and essentially create a new matrix with just the region of interest? Sorry if this is simple as I am still new to MatLab!
Thanks!

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 5 月 15 日
編集済み: Ameer Hamza 2020 年 5 月 15 日
Something like this
M % matrix of dimensions 35000-by-11
depths = M(:,1);
idx = (241 < depths) & (depths < 285)
M_new = M(idx, :)
M_new is the required matrix in which the element in the first column is only in range (241, 285).
  2 件のコメント
Daniel Tanner
Daniel Tanner 2020 年 5 月 15 日
Thank you Ameer!
Ameer Hamza
Ameer Hamza 2020 年 5 月 15 日
I am glad to be of help.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by