Selectring specifics rows of matrix

2 ビュー (過去 30 日間)
Dominik Maly
Dominik Maly 2018 年 12 月 22 日
再開済み: Walter Roberson 2018 年 12 月 23 日
Hi!
I've got very irritating problem. I've got 259x399 matrix. I want to cut it, beacuse i need only rows from 26 to 104 of each column. How can i do that? Reshape isn't really working

採用された回答

Image Analyst
Image Analyst 2018 年 12 月 22 日
It's just super basic MATLAB indexing. Try this:
smallerMatrix = fullMatrix(26 : 104, :);
  1 件のコメント
Dominik Maly
Dominik Maly 2018 年 12 月 22 日
Thank You very much, it's really easy :D

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

その他の回答 (0 件)

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by