eleminating data from a long vector

1 Ansicht (letzte 30 Tage)
Rica
Rica am 19 Feb. 2013
Hi all!
i have an index vector:
%
index=[id1;id2;id3.....idn]
and i have a long vector: A
i want to eleminate the elment of the vector a which have the index in index in this way:
%
A(id1:id1+30)=[]
A(id2:id2+30)=[]
.
.
.A(idn:idn+30)=[]
how could i write this in matlab in a compact manner?
thank you
  1 Kommentar
Walter Roberson
Walter Roberson am 19 Feb. 2013
Are you certain this is what you want to do? After the first removal, everything from id1+30 onward in the vector would "fall down" 31 places. Does id2 take that renumbering into account?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 19 Feb. 2013
Bearbeitet: Azzi Abdelmalek am 19 Feb. 2013
A=rand(1,1000); % Example
index=[10 100 500]
idx=arrayfun(@(x) x:x+30,index,'un',0);
A(cell2mat(idx))=[]
  2 Kommentare
Walter Roberson
Walter Roberson am 19 Feb. 2013
This is not equivalent to the original sequence in that the original sequence does not delete id2:id2+30 until after id1:id1+30 are gone, so in absolute locations it might need to add 31 more for the 2nd index, 62 for the 3rd, and so on... depending on the sort order of the indices.
Azzi Abdelmalek
Azzi Abdelmalek am 19 Feb. 2013
Bearbeitet: Azzi Abdelmalek am 19 Feb. 2013
I don't think that what he meant by the sequence. I guess he want to remove them at the same time.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Andrei Bobrov
Andrei Bobrov am 19 Feb. 2013
A=1:1000; % Example
index=[10 100 500];
n = 30;
A(bsxfun(@plus,index,(0:n-1)'))=[];
  3 Kommentare
Jan
Jan am 19 Feb. 2013
But in general this method is faster than the arrayfun and cell2mat approach.
Rica
Rica am 19 Feb. 2013
Thank you all

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Structures finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by