Returning peak values from a column

조회 수: 1 (최근 30일)
Christopher
Christopher 2013년 9월 8일
Hello,
I am trying to do the following. I have two column vectors:
Cp=[0;0.4;0.8;0.99;0.8;0.4;0];
Cf=[1;2;3;4;5;6;7];
I am trying to obtain a Cf column vector for the corresponding Cp column vector peak and below. So Cp peaks at 0.99 and I am trying to obtain the values for Cf from the beginning of Cp until the peak of Cp. All of the values of Cp are less than the peak value.
So
Cf_new=[1;2;3;4]
I am also trying to obtain the last half of Cf for Cp after the peak until the end. So the last half would be:
Cf_new2=[5;6;7]
Thank you

채택된 답변

Matt J
Matt J 2013년 9월 8일
[~,idx]=max(Cp);
Cf_new=Cf(1:idx);
Cf_new2=Cf(idx+1:end);

추가 답변 (2개)

Image Analyst
Image Analyst 2013년 9월 8일
편집: Image Analyst 2013년 9월 8일
peakIndex = find(diff(Cp) < 0, 1, 'first')
Cf_new = Cf(1 : peakIndex)
Cf_new2 = Cf(peakIndex+1:end)
In the command window:
peakIndex =
4
Cf_new =
1
2
3
4
Cf_new2 =
5
6
7
Or you might mean "max value" instead of peak. In that case you need to use max() instead of diff(), and you need to know what you want to do if you have a run of several max values in a row.

Andrei Bobrov
Andrei Bobrov 2013년 9월 8일
편집: Andrei Bobrov 2013년 9월 8일
t = [true;diff(Cp(:))>=0]
Cf_new = Cf(t);
Cf_new2 = Cf(~t);

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by