フィルターのクリア

shift array to flat

1 回表示 (過去 30 日間)
Munsell Randall
Munsell Randall 2017 年 10 月 7 日
編集済み: Cedric 2017 年 10 月 7 日
hello,
i have a 142 element array that generates a curve (attached). when a line is drawn from end to end the line is at a certain (unknown) slope. how could i adjust the values in the array so that when plotted and a line drawn from end to end of the curve, the slope is 0?
picture and array is attached.

採用された回答

Cedric
Cedric 2017 年 10 月 7 日
編集済み: Cedric 2017 年 10 月 7 日
plot( unnamed, 'b' ) ;
hold on ; grid on ;
x = (1 : length(unnamed)).' - 1 ;
slope = (unnamed(end) - unnamed(1)) / (length(unnamed) - 1) ;
y = unnamed - (unnamed(1) + x * slope) ;
plot( y, 'g' ) ;
but we often need something else :
plot( detrend( unnamed ), 'r' ) ;
with
>> mean( detrend( unnamed ))
ans =
-3.9612e-18
>> mean( y )
ans =
-0.0011
  2 件のコメント
Munsell Randall
Munsell Randall 2017 年 10 月 7 日
whats the purpose of the detrend?
also, what i really wanted to do was bring the lowest side of the plot level with the highest. how would i do that?
Cedric
Cedric 2017 年 10 月 7 日
編集済み: Cedric 2017 年 10 月 7 日
doc detrend : removes linear trend.
What I understood from your question was that you wanted the green line on my plot, which is the curve shifted up based on the value defined by the black line. If it is correct, this is what I compute/define as y.
Thinking a bit more about it, you may want
y = unnamed - x * slope ;
if you want the first value to match.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultirate Signal Processing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by