필터 지우기
필터 지우기

Simple inverse indexing question...

조회 수: 21 (최근 30일)
Mats
Mats 2012년 4월 19일
Suppose you have;
t = 1:0.1:10;
x = rand(1,100);
ind = [1:10,60:61,80:100];
I want a single expression which gives all the other indexes of t or x other than 'ind'. In this case [11:59,62:79].
This can't be hard, but i just cannot seem to find the answer. The simplified reason for which this is needed is:
figure();
plot(t(ind),x(ind),'r');
plot(t(~ind),x(~ind),'b');
And I don't want new variables like x2 = x; x2(ind) = [];
Thank you in advance!

채택된 답변

Mats
Mats 2012년 4월 19일
Somehow the response from Andrei Bobrov got lost, but he had the answer!
setdiff(find(x),ind) of setdiff(1:length(x),ind)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by