Take row from a vector based on the value of another vector

3 ビュー (過去 30 日間)
Zair Ahmedi
Zair Ahmedi 2018 年 7 月 4 日
コメント済み: Stephen23 2018 年 7 月 4 日
For example, I have this column vector:
A =
0
5.1205
5.6338
0
2.9639
5.6774
0
2.6281
0.7772
2.5641
I want to remove other rows and take only rows where the index is from a vector
B =
2
3
5
6
8
9
10
So, it will become
C =
5.1205
5.6338
2.9639
5.6774
2.6281
0.7772
2.5641
  1 件のコメント
Stephen23
Stephen23 2018 年 7 月 4 日
Very basic MATLAB concepts, such as how to use indexing, are explained in the introductory tutorials. These are highly recommended for all beginners:

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

回答 (1 件)

Robert U
Robert U 2018 年 7 月 4 日
Hi Jerry,
Matlab documentation is your friend:
C = A(B)
Kind regards,
Robert

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

タグ

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by