removing specific rows from char array

14 ビュー (過去 30 日間)
sermet OGUTCU
sermet OGUTCU 2021 年 8 月 27 日
コメント済み: the cyclist 2021 年 8 月 27 日
data=['01'; '02'; '03'; '04'; '05'; '06'; '07'; '08'; '09'; '10'];
How I can remove the 1st and 5th columns from data aray?
  1 件のコメント
the cyclist
the cyclist 2021 年 8 月 27 日
data is a 10x2 character array, so it does not have a 5th column. I assume you meant row. See my solution.

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

採用された回答

the cyclist
the cyclist 2021 年 8 月 27 日
data=['01'; '02'; '03'; '04'; '05'; '06'; '07'; '08'; '09'; '10'];
data([1 5],:) = []
data = 8×2 char array
'02' '03' '04' '06' '07' '08' '09' '10'
  2 件のコメント
the cyclist
the cyclist 2021 年 8 月 27 日
data=['01'; '02'; '03'; '04'; '05'; '06'; '07'; '08'; '09'; '10'];
remove = [1 5];
data(remove,:) = []
data = 8×2 char array
'02' '03' '04' '06' '07' '08' '09' '10'
This is a very basic MATLAB question. You might benefit from watching the MATLAB Onramp tutorial.

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

その他の回答 (0 件)

カテゴリ

Find more on Data Types in Help Center and File Exchange

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by