フィルターのクリア

Compare segments of a vector

1 回表示 (過去 30 日間)
Ricardo Gutierrez
Ricardo Gutierrez 2018 年 3 月 6 日
編集済み: Fangjun Jiang 2018 年 3 月 7 日
Hello good day.
I have a problem, which I hope you can give me support or advice: I have the following column vector of 20 elements (the real one is 1000 elements): A=[6.9563; 6.9563; 6.9563; 6.9563; 6.9563; 7.4917; 5.8343; 5.3075; 5.8713; 7.1312; 11.2175; 11.2175; 11.2175; 11.2175; 11.2175; 10.4278; 10.9766; 11.2685; 9.4748; 11.3789] The question is how to compare (greater than>) the first 5 elements with the second 5 elements of vector A. 6.9563 6.9563 6.9563 6.9563 6.9563 Compare with 7.4917 5.8343 5.3075 5.8713 7.1312 and after third 5 elements with the fourth 5 elements of the vector A 11.2175 11.2175 11.2175 11.2175 11.2175 Compare with 10.4278 10.9766 11.2685 9.4748 11.3789 And so on automatically, if the vector A is 1000 elements
I hope you understand me and help me. Greetings.
  5 件のコメント
Jos (10584)
Jos (10584) 2018 年 3 月 6 日
I fail see the relationship between the values of B and the values of A ...
Ricardo Gutierrez
Ricardo Gutierrez 2018 年 3 月 7 日
You're right I put them back A=[2 2 2 2 2 3 6 3 4 5 1 1 1 1 1 2 3 4 5 6]........ 2 2 2 2 2 3 6 3 4 5 in the second 5 values; at least one value is greater than 2 therefore the values pass:3 6 3 4 5.....in the following values 1 1 1 1 1 2 3 4 5 6 the last 5 values at least one value is greater than 1 therefore the values pass:2 3 4 5 6....so it would be in vector B....B=[3 6 3 4 5 2 3 4 5 6 ]

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

採用された回答

Fangjun Jiang
Fangjun Jiang 2018 年 3 月 7 日
編集済み: Fangjun Jiang 2018 年 3 月 7 日
What if none of the element in second 5 elements is greater than the first 5 elements? The code below might be easier to understand.
A=[2 2 2 2 2 3 6 3 4 5 1 1 1 1 1 0 0 0 0 0];
A=transpose(reshape(A,10,[]));
B=A(:,6:10);
A=A(:,1:5);
C=B>A;
ind=any(C,2);
B(~ind,:)=A(~ind,:)
B =
3 6 3 4 5
1 1 1 1 1
  1 件のコメント
Ricardo Gutierrez
Ricardo Gutierrez 2018 年 3 月 7 日
Excelent!!!!!

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

その他の回答 (3 件)

David Fletcher
David Fletcher 2018 年 3 月 6 日
編集済み: David Fletcher 2018 年 3 月 6 日
ind=repmat(logical([0 0 0 0 0 1 1 1 1 1]),1,100)
b=a(ind)
a(ind)=[]
c=a>b

Fangjun Jiang
Fangjun Jiang 2018 年 3 月 6 日
This example should give you an idea
A=transpose(reshape(rand(20,1),5,[]))
B=diff(A)
C=B>0
C should tell you the relation

Jos (10584)
Jos (10584) 2018 年 3 月 7 日
編集済み: Jos (10584) 2018 年 3 月 7 日
A = [2 2 2 2 2 3 6 3 4 5 1 1 1 1 1 2 3 4 5 6]
AA = reshape(A,5,[])
dA = diff(AA,[],2)
ix = all(dA>0)
ix = 2*find(ix(1:2:end))
B = reshape(AA(:,ix),1,[])
  2 件のコメント
Ricardo Gutierrez
Ricardo Gutierrez 2018 年 3 月 7 日
Your code shows as a result:..B = 2 2 2 2 2 1 1 1 1 1...and must be:...B = 3 6 3 4 5 2 3 4 5 6....thank you very much for your work and time
Jos (10584)
Jos (10584) 2018 年 3 月 7 日
Oh, I subtracted a 1 from ix by mistake! Corrected

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

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by