フィルターのクリア

Removing certain lines of text from a cell array

1 回表示 (過去 30 日間)
jgillis16
jgillis16 2015 年 6 月 12 日
コメント済み: Azzi Abdelmalek 2015 年 6 月 12 日
I have a 53218x1 cell named N1. It is a cell consisting of the names of galaxies I have taken from a loaded ASCII catalog. I need to remove galaxies that have the first three letters starting with 'ESO'. There are 5,980 of these lines of code I have to remove. How would I do that? Would a 'for loop' work?
SIDE NOTE: these words all are 1x10 char in N1.

採用された回答

Titus Edelhofer
Titus Edelhofer 2015 年 6 月 12 日
Hi,
that should be fairly straight forward:
% find the indices of ESO
idx = strncmp(N1, 'ESO', 3);
% and remove them:
N1(idx) = [];
Titus

その他の回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2015 年 6 月 12 日
v={'esoabcd';'abcgd';'ehdf';'esoez'}
out=v(cellfun(@isempty,regexp(v,'(?<=eso).+')))
  2 件のコメント
jgillis16
jgillis16 2015 年 6 月 12 日
Can you elaborate on what that means and does?
Azzi Abdelmalek
Azzi Abdelmalek 2015 年 6 月 12 日

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

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by