フィルターのクリア

How to put elements of a matrix into another matrix.

4 ビュー (過去 30 日間)
Darrian Low
Darrian Low 2018 年 4 月 21 日
コメント済み: Darrian Low 2018 年 4 月 22 日
Hi,
I am trying to extract six numbers from columns three and four in the photo below. The numbers I desire are 5600, 1500, 5500, 620, 5100 and 620.
The way I wish to format those numbers are in a 6x1 matrix. Just like the one below.
I am currently trying to use a for loop and an if loop, since I don't want the numbers 5025.026 and 1001.875 in my 6x1 matrix, but to no avail.
I look forward to seeing some of your answers and assistance. Thanks!

採用された回答

Stephen23
Stephen23 2018 年 4 月 21 日
編集済み: Stephen23 2018 年 4 月 21 日

Where M is your matrix:

reshape(M(2:4,3:4).',[],1)

or

tmp = M(2:4,3:4).';
tmp(:)
  1 件のコメント
Darrian Low
Darrian Low 2018 年 4 月 22 日
Thank you very much for your help! I appreciate it a lot.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by