How can I delete a certain number of rows in a vector?

1 回表示 (過去 30 日間)
Thor
Thor 2013 年 4 月 2 日
Dear all, I have a 2505*1 vector with only 1 and 0. The number 1 occurs 178 times. I want to delete the first 158 rows with an 1 and the last 20 rows and the rows with 0 should stay! How can I do that? Thank you in advance!

採用された回答

Image Analyst
Image Analyst 2013 年 4 月 2 日
rowsWithOnes = find(vector == 1)
vector(rowsWithOnes(1:158)) = []; % Delete first 158
vector(rowsWithOnes(end-19:end)) = []; % Delete last 20

その他の回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 4 月 2 日
編集済み: Azzi Abdelmalek 2013 年 4 月 2 日
idx=find(A)
idx1=[idx(1:158) idx(end-19:end)]
A(idx1)=[];

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by